Trait rustrt::rtio::RemoteCallback[src]

pub trait RemoteCallback {
    fn fire(&mut self);
}

Required Methods

fn fire(&mut self)

Trigger the remote callback. Note that the number of times the callback is run is not guaranteed. All that is guaranteed is that, after calling 'fire', the callback will be called at least once, but multiple callbacks may be coalesced and callbacks may be called more often requested. Destruction also triggers the callback.

Implementors