[][src]Function gtk::timeout_add

pub fn timeout_add<F>(interval: u32, func: F) -> SourceId where
    F: FnMut() -> Continue + 'static, 
👎 Deprecated since 0.9.2:

Please use the glib::timeout_add_local function instead

Adds a closure to be called by the default main loop at regular intervals with millisecond granularity.

func will be called repeatedly every interval milliseconds until it returns Continue(false). Precise timing is not guaranteed, the timeout may be delayed by other events. Prefer timeout_add_seconds when millisecond precision is not necessary.

Similar to glib::timeout_add but only callable from the main thread and doesn't require Send. It is the same as glib::timeout_add_local.