August 2011
Intermediate to advanced
552 pages
23h 48m
English
Dispatch sources represent streams of events. When an event associated with a dispatch source occurs, an event handler (such as a block) is scheduled on a designated queue. You make a new dispatch source with dispatch_source_create():
dispatch_source_t dispatch_source_create (dispatch_source_type_t type,
uintptr_t handle,
unsigned long mask,
dispatch_queue_t queue);
type is one of these constants:
DISPATCH_SOURCE_TYPE_DATA_ADD DISPATCH_SOURCE_TYPE_DATA_OR DISPATCH_SOURCE_TYPE_MACH_SEND DISPATCH_SOURCE_TYPE_MACH_RECV DISPATCH_SOURCE_TYPE_PROC DISPATCH_SOURCE_TYPE_READ ...
Read now
Unlock full access