File: dispatch.3

package info (click to toggle)
swiftlang 6.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,532 kB
  • sloc: cpp: 9,901,743; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (43 lines) | stat: -rw-r--r-- 1,334 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.\" Copyright (c) 2008-2012 Apple Inc. All rights reserved.
.Dd May 1, 2009
.Dt dispatch 3
.Os Darwin
.Sh NAME
.Nm dispatch
.Nd the dispatch framework
.Sh SYNOPSIS
.Fd #include <dispatch/dispatch.h>
.Sh DESCRIPTION
The dispatch framework allows blocks to be scheduled for asynchronous and
concurrent execution via the core functions described in
.Xr dispatch_async 3 and
.Xr dispatch_apply 3 .
.Pp
Dispatch queues are the basic units of organization of blocks. Several queues
are created by default, and applications may create additional queues for their
own use. See
.Xr dispatch_queue_create 3
for more information.
.Pp
Dispatch groups allow applications to track the progress of blocks submitted to
queues and take action when the blocks complete. See
.Xr dispatch_group_create 3
for more information.
.Pp
The dispatch framework also provides functions to monitor underlying system
events and automatically submit event handler blocks to dispatch queues.
.Sh SEE ALSO
.Xr dispatch_after 3 ,
.Xr dispatch_api 3 ,
.Xr dispatch_apply 3 ,
.Xr dispatch_async 3 ,
.Xr dispatch_data_create 3 ,
.Xr dispatch_group_create 3 ,
.Xr dispatch_io_create 3 ,
.Xr dispatch_io_read 3 ,
.Xr dispatch_object 3 ,
.Xr dispatch_once 3 ,
.Xr dispatch_queue_create 3 ,
.Xr dispatch_semaphore_create 3 ,
.Xr dispatch_source_create 3 ,
.Xr dispatch_time 3