Function glib::source::timeout_source_new_seconds [−][src]
pub fn timeout_source_new_seconds<F>(
interval: u32,
name: Option<&str>,
priority: Priority,
func: F
) -> Source where
F: FnMut() -> Continue + Send + 'static,
Expand description
Adds a closure to be called by the main loop the returned Source
is attached to at regular
intervals with second granularity.
func
will be called repeatedly every interval
seconds until it
returns Continue(false)
. Precise timing is not guaranteed, the timeout may
be delayed by other events.
Creates a new timeout source.
The source will not initially be associated with any MainContext
and must be added to one with g_source_attach()
before it will be
executed.
The scheduling granularity/accuracy of this timeout source will be in seconds.
The interval given is in terms of monotonic time, not wall clock time.
See monotonic_time()
.
interval
the timeout interval in seconds
Returns
the newly-created timeout source