ALooper_callbackFunc

Type Alias ALooper_callbackFunc 

Source
pub type ALooper_callbackFunc = Option<unsafe extern "C" fn(fd: c_int, events: c_int, data: *mut c_void) -> c_int>;
Expand description

For callback-based event loops, this is the prototype of the function that is called when a file descriptor event occurs. It is given the file descriptor it is associated with, a bitmask of the poll events that were triggered (typically ALOOPER_EVENT_INPUT), and the data pointer that was originally supplied.

Implementations should return 1 to continue receiving callbacks, or 0 to have this file descriptor and callback unregistered from the looper.

Aliased Type§

pub enum ALooper_callbackFunc {
    None,
    Some(unsafe extern "C" fn(i32, i32, *mut c_void) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(i32, i32, *mut c_void) -> i32)

Some value of type T.