@@ -7,17 +7,17 @@ A trivial implementation of timeouts for `Promise`s, built on top of [ReactPHP](
7
7
** Table of contents**
8
8
9
9
* [ Usage] ( #usage )
10
- * [ timeout()] ( #timeout )
11
- * [ Timeout cancellation] ( #timeout-cancellation )
12
- * [ Cancellation handler] ( #cancellation-handler )
13
- * [ Input cancellation] ( #input-cancellation )
14
- * [ Output cancellation] ( #output-cancellation )
15
- * [ Collections] ( #collections )
16
- * [ resolve()] ( #resolve )
17
- * [ Resolve cancellation] ( #resolve-cancellation )
18
- * [ reject()] ( #reject )
19
- * [ Reject cancellation] ( #reject-cancellation )
20
- * [ TimeoutException] ( #timeoutexception )
10
+ * [ timeout()] ( #timeout )
11
+ * [ Timeout cancellation] ( #timeout-cancellation )
12
+ * [ Cancellation handler] ( #cancellation-handler )
13
+ * [ Input cancellation] ( #input-cancellation )
14
+ * [ Output cancellation] ( #output-cancellation )
15
+ * [ Collections] ( #collections )
16
+ * [ resolve()] ( #resolve )
17
+ * [ Resolve cancellation] ( #resolve-cancellation )
18
+ * [ reject()] ( #reject )
19
+ * [ Reject cancellation] ( #reject-cancellation )
20
+ * [ TimeoutException] ( #timeoutexception )
21
21
* [ Install] ( #install )
22
22
* [ Tests] ( #tests )
23
23
* [ License] ( #license )
@@ -27,18 +27,26 @@ A trivial implementation of timeouts for `Promise`s, built on top of [ReactPHP](
27
27
This lightweight library consists only of a few simple functions.
28
28
All functions reside under the ` React\Promise\Timer ` namespace.
29
29
30
- The below examples assume you use an import statement similar to this:
30
+ The below examples refer to all functions with their fully-qualified names like this:
31
31
32
32
``` php
33
- use React\Promise\Timer;
33
+ React\Promise\Timer\timeout(…);
34
+ ```
34
35
35
- Timer\timeout(…);
36
+ As of PHP 5.6+ you can also import each required function into your code like this:
37
+
38
+ ``` php
39
+ use function React\Promise\Timer\timeout;
40
+
41
+ timeout(…);
36
42
```
37
43
38
- Alternatively, you can also refer to them with their fully-qualified name :
44
+ Alternatively, you can also use an import statement similar to this :
39
45
40
46
``` php
41
- \React\Promise\Timer\timeout(…);
47
+ use React\Promise\Timer;
48
+
49
+ Timer\timeout(…);
42
50
```
43
51
44
52
### timeout()
@@ -70,7 +78,7 @@ A common use case for handling only resolved values looks like this:
70
78
71
79
``` php
72
80
$promise = accessSomeRemoteResource();
73
- Timer\timeout($promise, 10.0)->then(function ($value) {
81
+ React\Promise\ Timer\timeout($promise, 10.0)->then(function ($value) {
74
82
// the operation finished within 10.0 seconds
75
83
});
76
84
```
@@ -79,12 +87,12 @@ A more complete example could look like this:
79
87
80
88
``` php
81
89
$promise = accessSomeRemoteResource();
82
- Timer\timeout($promise, 10.0)->then(
90
+ React\Promise\ Timer\timeout($promise, 10.0)->then(
83
91
function ($value) {
84
92
// the operation finished within 10.0 seconds
85
93
},
86
94
function ($error) {
87
- if ($error instanceof Timer\TimeoutException) {
95
+ if ($error instanceof React\Promise\ Timer\TimeoutException) {
88
96
// the operation has failed due to a timeout
89
97
} else {
90
98
// the input operation has failed due to some other error
@@ -96,11 +104,11 @@ Timer\timeout($promise, 10.0)->then(
96
104
Or if you're using [ react/promise v2.2.0] ( https://github.com/reactphp/promise ) or up:
97
105
98
106
``` php
99
- Timer\timeout($promise, 10.0)
107
+ React\Promise\ Timer\timeout($promise, 10.0)
100
108
->then(function ($value) {
101
109
// the operation finished within 10.0 seconds
102
110
})
103
- ->otherwise(function (Timer\TimeoutException $error) {
111
+ ->otherwise(function (React\Promise\ Timer\TimeoutException $error) {
104
112
// the operation has failed due to a timeout
105
113
})
106
114
->otherwise(function ($error) {
@@ -178,7 +186,7 @@ input `$promise`, as demonstrated in the following example:
178
186
179
187
``` php
180
188
$promise = accessSomeRemoteResource();
181
- $timeout = Timer\timeout($promise, 10.0);
189
+ $timeout = React\Promise\ Timer\timeout($promise, 10.0);
182
190
183
191
$promise->cancel();
184
192
```
@@ -201,7 +209,7 @@ Similarily, you can also explicitly `cancel()` the resulting promise like this:
201
209
202
210
``` php
203
211
$promise = accessSomeRemoteResource();
204
- $timeout = Timer\timeout($promise, 10.0);
212
+ $timeout = React\Promise\ Timer\timeout($promise, 10.0);
205
213
206
214
$timeout->cancel();
207
215
```
@@ -237,7 +245,7 @@ This is done for consistency with the [timeout cancellation](#timeout-cancellati
237
245
handling and also because it is assumed this is often used like this:
238
246
239
247
``` php
240
- $timeout = Timer\timeout(accessSomeRemoteResource(), 10.0);
248
+ $timeout = React\Promise\ Timer\timeout(accessSomeRemoteResource(), 10.0);
241
249
242
250
$timeout->cancel();
243
251
```
@@ -264,7 +272,7 @@ $promises = array(
264
272
265
273
$promise = \React\Promise\all($promises);
266
274
267
- Timer\timeout($promise, 10)->then(function ($values) {
275
+ React\Promise\ Timer\timeout($promise, 10)->then(function ($values) {
268
276
// *all* promises resolved
269
277
});
270
278
```
@@ -280,7 +288,7 @@ The `resolve($time, LoopInterface $loop = null)` function can be used to create
280
288
resolves in ` $time ` seconds with the ` $time ` as the fulfillment value.
281
289
282
290
``` php
283
- Timer\resolve(1.5)->then(function ($time) {
291
+ React\Promise\ Timer\resolve(1.5)->then(function ($time) {
284
292
echo 'Thanks for waiting ' . $time . ' seconds' . PHP_EOL;
285
293
});
286
294
```
@@ -301,7 +309,7 @@ loop instance.
301
309
You can explicitly ` cancel() ` the resulting timer promise at any time:
302
310
303
311
``` php
304
- $timer = Timer\resolve(2.0);
312
+ $timer = React\Promise\ Timer\resolve(2.0);
305
313
306
314
$timer->cancel();
307
315
```
@@ -314,7 +322,7 @@ The `reject($time, LoopInterface $loop = null)` function can be used to create a
314
322
which rejects in ` $time ` seconds with a ` TimeoutException ` .
315
323
316
324
``` php
317
- Timer\reject(2.0)->then(null, function (TimeoutException $e) {
325
+ React\Promise\ Timer\reject(2.0)->then(null, function (React\Promise\Timer\ TimeoutException $e) {
318
326
echo 'Rejected after ' . $e->getTimeout() . ' seconds ' . PHP_EOL;
319
327
});
320
328
```
@@ -338,7 +346,7 @@ and can be used as a basic building block for higher-level promise consumers.
338
346
You can explicitly ` cancel() ` the resulting timer promise at any time:
339
347
340
348
``` php
341
- $timer = Timer\reject(2.0);
349
+ $timer = React\Promise\ Timer\reject(2.0);
342
350
343
351
$timer->cancel();
344
352
```
@@ -353,7 +361,7 @@ The `getTimeout()` method can be used to get the timeout value in seconds.
353
361
354
362
## Install
355
363
356
- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
364
+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
357
365
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
358
366
359
367
This project follows [ SemVer] ( https://semver.org/ ) .
@@ -368,12 +376,12 @@ See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
368
376
This project aims to run on any platform and thus does not require any PHP
369
377
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
370
378
HHVM.
371
- It's * highly recommended to use PHP 7+ * for this project.
379
+ It's * highly recommended to use the latest supported PHP version * for this project.
372
380
373
381
## Tests
374
382
375
383
To run the test suite, you first need to clone this repo and then install all
376
- dependencies [ through Composer] ( https://getcomposer.org ) :
384
+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
377
385
378
386
``` bash
379
387
$ composer install
@@ -382,7 +390,7 @@ $ composer install
382
390
To run the test suite, go to the project root and run:
383
391
384
392
``` bash
385
- $ php vendor/bin/phpunit
393
+ $ vendor/bin/phpunit
386
394
```
387
395
388
396
## License
0 commit comments