Function sourceview5::scheduler_add_full

source ·
pub fn scheduler_add_full<P: Fn(i64) -> bool + Send + Sync + 'static>(
    callback: P,
) -> usize
Expand description

Adds a new callback that will be executed as time permits on the main thread.

This is useful when you need to do a lot of background work but want to do it incrementally.

@callback will be provided a deadline that it should complete it’s work by (or near) and can be checked using get_monotonic_time() for comparison.

Use scheduler_remove() to remove the handler.

§callback

the callback to execute

§notify

closure notify for @user_data