[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/vendor/react/promise/src/ -> CancellablePromiseInterface.php (source)

   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  }


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1