[ Index ] |
PHP Cross Reference of phpBB-3.2.11-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 namespace React\Promise; 4 5 interface CancellablePromiseInterface extends PromiseInterface 6 { 7 /** 8 * The `cancel()` method notifies the creator of the promise that there is no 9 * further interest in the results of the operation. 10 * 11 * Once a promise is settled (either fulfilled or rejected), calling `cancel()` on 12 * a promise has no effect. 13 * 14 * @return void 15 */ 16 public function cancel(); 17 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 11 20:33:01 2020 | Cross-referenced by PHPXref 0.7.1 |