1 .\" Copyright (c) 2008-2010 Apple Inc. All rights reserved.
7 .Nd schedule blocks for deferred execution
9 .Fd #include <dispatch/dispatch.h>
12 .Fa "dispatch_time_t when" "dispatch_queue_t queue" "void (^block)(void)"
16 .Fa "dispatch_time_t when" "dispatch_queue_t queue" "void *context" "void (*function)(void *)"
25 at the time specified by the
30 parameter is a value created by
33 .Fn dispatch_walltime .
35 For a more detailed description about submitting blocks to queues, see
36 .Xr dispatch_async 3 .
39 retains the passed queue.
46 is supported, but is not as efficient as calling
50 .Vt DISPATCH_TIME_FOREVER
53 parameter is undefined.
58 function is a wrapper around
59 .Fn dispatch_after_f .
62 .Xr dispatch_async 3 ,