CountingSelectEvent.Handler

Alias for event handler delegate. The return value indicates whether the event should remain registered with the epoll selector, or be unregistered after handling.

The ulong passed to the delegate is the number of times the event has been triggered since the last time handle() was called from epoll.

class CountingSelectEvent
alias Handler = bool delegate(ulong n)

Meta