1TICKIT_WATCH_TIMER_AFTER_MSELCi(b3r)ary Functions MaTnIuCaKlIT_WATCH_TIMER_AFTER_MSEC(3)
2
3
4
6 tickit_watch_timer_after_* - invoke a callback after a fixed delay
7
9 #include <tickit.h>
10
11 typedef int TickitCallbackFn(Tickit *t, TickitEventflags flags,
12 void *info, void *user);
13
14 void *tickit_watch_timer_after_msec(Tickit *t, int msec,
15 TickitBindFlags flags, TickitCallbackFn *fn, void *user);
16 void *tickit_watch_timer_after_tv(Tickit *t, const struct timeval *after,
17 TickitBindFlags flags, TickitCallbackFn *fn, void *user);
18
19 Link with -ltickit.
20
22 The tickit_watch_timer_after_*() family of functions register a call‐
23 back function to be invoked by the toplevel event loop a fixed delay
24 afterwards. A registered callback will be invoked by a running call to
25 tickit_run(3). The callback function will be invoked once, and then de‐
26 stroyed afterwards. Each function returns an opaque pointer value which
27 serves to identify this instance. The info pointer will be NULL.
28
29 When invoked, the callback function is always passed both
30 TICKIT_EV_FIRE and TICKIT_EV_UNBIND flags to its flags argument. If the
31 callback had been registered with the TICKIT_BIND_DESTROY flag, then it
32 will also be invoked with the TICKIT_EV_DESTROY flag if it has not yet
33 been invoked by the time the toplevel instance is destroyed.
34
35 If cancelled by tickit_watch_cancel(3) the callback function is invoked
36 with just the TICKIT_EV_UNBIND flag if it had been registered with
37 TICKIT_BIND_UNBIND.
38
40 tickit_watch_timer_after_msec() and tickit_watch_timer_after_tv() re‐
41 turn an opaque identifier pointer.
42
44 tickit_new_stdio(3), tickit_watch_io(3),
45 tickit_watch_timer_at_epoch(3), tickit_watch_later(3),
46 tickit_watch_signal(3), tickit_watch_process(3), tickit_watch_can‐
47 cel(3), tickit(7)
48
49
50
51 TICKIT_WATCH_TIMER_AFTER_MSEC(3)