Constructor
Type alias for subclass constructors
Error reporting method, called when either an Exception is caught from handle() or an error event is reported; kills the fiber.
Finalize method, called after this instance has been unregistered from the Dispatcher; kills the fiber and calls the super-class' finalize() method (which calls a finalizer delegate, if one has been set).
Timeout method, called after this a timeout has occurred in the SelectDispatcher; kills the fiber.
Fiber instance
Flag set to true when the error_() method is called due to an I/O error event. The flag is always reset in the finalize() method.
Sets the Finalizer. May be set to null to disable finalizing.
Sets the TimeoutReporter. May be set to null to disable timeout reporting.
Sets the Error Reporter. May be set to null to disable error reporting.
Finalize method, called after this instance has been unregistered from the Dispatcher.
Error reporting method, called when an Exception is caught from super.handle().
Timeout method, called after this a timeout has occurred in the SelectDispatcher.
IFiberSelectClient abstract class