pj_timer_heap_callback typedef

pj_timer_heap_callback = NativeFunction<Void Function(Pointer<pj_timer_heap_t> timer_heap, Pointer<pj_timer_entry> entry)>

The type of callback function to be called by timer scheduler when a timer has expired.

@param timer_heap The timer heap. @param entry Timer entry which timer's has expired.

Implementation

typedef pj_timer_heap_callback = ffi.NativeFunction<
    ffi.Void Function(ffi.Pointer<pj_timer_heap_t> timer_heap,
        ffi.Pointer<pj_timer_entry> entry)>;