ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Go to the source code of this file.
Namespaces | |
Sabre\Event\Loop | |
Functions | |
Sabre\Event\Loop::setTimeout (callable $cb, $timeout) | |
Executes a function after x seconds. More... | |
Sabre\Event\Loop::setInterval (callable $cb, $timeout) | |
Executes a function every x seconds. More... | |
Sabre\Event\Loop::clearInterval ($intervalId) | |
Stops a running internval. More... | |
Sabre\Event\Loop::nextTick (callable $cb) | |
Runs a function immediately at the next iteration of the loop. More... | |
Sabre\Event\Loop::addReadStream ($stream, callable $cb) | |
Adds a read stream. More... | |
Sabre\Event\Loop::addWriteStream ($stream, callable $cb) | |
Adds a write stream. More... | |
Sabre\Event\Loop::removeReadStream ($stream) | |
Stop watching a stream for reads. More... | |
Sabre\Event\Loop::removeWriteStream ($stream) | |
Stop watching a stream for writes. More... | |
Sabre\Event\Loop::run () | |
Runs the loop. More... | |
Sabre\Event\Loop::tick ($block=false) | |
Executes all pending events. More... | |
Sabre\Event\Loop::stop () | |
Stops a running eventloop. More... | |
Sabre\Event\Loop::instance (Loop $newLoop=null) | |
Retrieves or sets the global Loop object. More... | |