Changeset View
Changeset View
Standalone View
Standalone View
src/future/FutureProxy.php
| Show First 20 Lines • Show All 57 Lines • ▼ Show 20 Lines | public function getWriteSockets() { | ||||
| return $this->getProxiedFuture()->getWriteSockets(); | return $this->getProxiedFuture()->getWriteSockets(); | ||||
| } | } | ||||
| public function start() { | public function start() { | ||||
| $this->getProxiedFuture()->start(); | $this->getProxiedFuture()->start(); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| protected function getServiceProfilerStartParameters() { | |||||
| return $this->getProxiedFuture()->getServiceProfilerStartParameters(); | |||||
| } | |||||
| protected function getServiceProfilerResultParameters() { | |||||
| return $this->getProxiedFuture()->getServiceProfilerResultParameters(); | |||||
| } | |||||
| abstract protected function didReceiveResult($result); | abstract protected function didReceiveResult($result); | ||||
| } | } | ||||