Enum android_looper_sys::LooperPoll
[−]
[src]
pub enum LooperPoll {
Wake,
Callback,
Timeout,
Error,
}Result from ALooper_pollOnce() and ALooper_pollAll().
Variants
Wake |
The poll was awoken using wake() before the timeout expired and no callbacks were executed and no other file descriptors were ready. | |
Callback |
One or more callbacks were executed. | |
Timeout |
The timeout expired. | |
Error |
An error occurred. |