friends-of-reactphp / stomp

STOMP bindings for ReactPHP.
MIT License
115 stars 42 forks source link

One-off timers #30

Closed Lelya closed 11 years ago

Lelya commented 11 years ago

Please show how to use the One-off timers.

igorw commented 11 years ago

Hi,

this is not really related to stomp, but is part of what the react event loop provides.

Quick example:

$loop->addTimer(5, function () {
    // do something in 5 seconds
});

There's more examples in the README and the tests of that event loop component.