event_base_loopexit

(PECL libevent >= 0.0.1)

event_base_loopexitExit loop after a time

Opis

event_base_loopexit ( resource $event_base [, int $timeout = -1 ] ) : bool

The next event loop iteration after the given timer expires will complete normally, then exit without blocking for events again.

Parametry

event_base

Valid event base resource.

timeout

Optional timeout parameter (in microseconds).

Zwracane wartości

event_base_loopexit() returns TRUE on success or FALSE on error.

add a note add a note

User Contributed Notes 1 note

up
0
jille at hexon dot cx
12 years ago
The timeout (if >= 0) is in microseconds.
To Top