MessageQueue.FileDescriptorEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handles events received by a file descriptor.
public delegate int MessageQueue.FileDescriptorEventHandler(FileDescriptor fd, MessageQueueEventType events);
type MessageQueue.FileDescriptorEventHandler = delegate of FileDescriptor * MessageQueueEventType -> int
Parameters
The file descriptor that received events.
- events
- MessageQueueEventType
The set of input, output, or error events that occurred.
Return Value
The new set of events to watch, or zero to unregister the listener.
Remarks
Return a combination of input, output, and error event masks to continue watching those events, or zero to unregister the listener.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.