Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function await($resource, callable $callback, $persistent = false, $data = null) : Io
 {
     return $this->awaitManager->create($resource, $callback, $persistent, $data);
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function await($resource, callable $callback) : Io
 {
     return $this->awaitManager->create($resource, $callback);
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  */
 public function await($resource, callable $callback, bool $persistent = false) : Io
 {
     return $this->awaitManager->create($resource, $callback, $persistent);
 }