EventListener::setCallback
(PECL event >= 1.2.6-beta)
The setCallback purpose
Description
Adjust event connect listener's callback and optionally the callback argument.
Parameters
cbThe new callback for new connections. Ignored if null.
Should match the following prototype:
callback(EventListener $listener = null, mixed $fd = null, array $address = null, mixed $arg = null): voidlistenerThe
EventListenerobject.fdThe file descriptor or a resource associated with the listener.
addressArray of two elements: IP address and the server port.
argUser custom data attached to the callback.
argCustom user data attached to the callback. Ignored if null.
Return Values
Void