Lines Matching full:loop
3 namespace Sabre\Event\Loop;
47 * Runs a function immediately at the next iteration of the loop.
123 * Runs the loop.
142 * If there are now timeouts, nextTick callbacks or events in the loop at
146 * loop after the tick.
169 * Retrieves or sets the global Loop object.
171 * @param Loop $newLoop
173 function instance(Loop $newLoop = null) {
175 static $loop;
177 $loop = $newLoop;
178 } elseif (!$loop) {
179 $loop = new Loop();
181 return $loop;