DescriptorDelegate classes are used to define the logic for handling read and write events on file Descriptors. Users should create new classes inheriting from either DescriptorReadDelegate or DescriptorWriteDelegate, providing an implementation of either readEventOnDescriptor or writeEventOnDescriptor respectively, to implement their application logic.
inherits
State supers: DescriptorDelegate
methods
deferred void readEventOnDescriptor Descriptor d; |
The RunLoop has determined that the Descriptor d is readable.
inherits
State supers: DescriptorDelegate
methods
deferred void writeEventOnDescriptor Descriptor d; |
The RunLoop has determined that the Descriptor d is writable.