[src]

Struct rustuv::signal::SignalWatcher

pub struct SignalWatcher {
    handle: *uv_signal_t,
    home: HomeHandle,
    channel: Sender<Signum>,
    signal: Signum,
}

Fields

handle
home
channel
signal

Methods

impl SignalWatcher

fn new(io: &mut UvIoFactory, signum: Signum, channel: Sender<Signum>) -> Result<~SignalWatcher, UvError>

Trait Implementations

impl HomingIO for SignalWatcher

fn home<'r>(&'r mut self) -> &'r mut HomeHandle

fn go_to_IO_home(&mut self) -> uint

This function will move tasks to run on their home I/O scheduler. Note that this function does not pin the task to the I/O scheduler, but rather it simply moves it to running on the I/O scheduler.

fn fire_homing_missile(&mut self) -> HomingMissile

Fires a single homing missile, returning another missile targeted back at the original home of this task. In other words, this function will move the local task to its I/O scheduler and then return an RAII wrapper which will return the task home.

impl UvHandle<uv_signal_t> for SignalWatcher

fn uv_handle(&self) -> *uv_signal_t

fn uv_loop(&self) -> Loop

fn alloc(_: Option<Self>, ty: uv_handle_type) -> *T

unsafe fn from_uv_handle<'a>(h: &'a *T) -> &'a mut Self

fn install(~self) -> ~Self

fn close_async_(&mut self)

fn close(&mut self)

impl RtioSignal for SignalWatcher

impl Drop for SignalWatcher

fn drop(&mut self)