1 .\" Copyright (c) 2008-2009 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 .
43 is supported, but is not as efficient as calling
46 .Vt DISPATCH_TIME_FOREVER
49 parameter is undefined.
53 function is a wrapper around
54 .Fn dispatch_after_f .
56 .Xr dispatch_async 3 ,