-
Subclasses of Handle in com.oracle.libuv
| Modifier and Type |
Class |
Description |
class |
AsyncHandle |
Async handles allow the user to wakeup the event loop and
get a callback called from another thread.
|
class |
CheckHandle |
Check handles will run the given callback once per loop iteration, right
after polling for i/o.
|
class |
IdleHandle |
Idle handles will run the given callback once per loop
iteration, right before the PrepareCallback handles.
|
class |
PipeHandle |
Pipe handles provide an abstraction over streaming files on Unix (including
local domain sockets, pipes, and FIFOs) and named pipes on Windows.
|
class |
PrepareHandle |
Prepare handles will run the given callback once per loop iteration, right
before polling for i/o.
|
class |
ProcessHandle |
|
class |
TCPHandle |
|
class |
TimerHandle |
Timer handles are used to schedule callbacks to be called in the future.
|
class |
UDPHandle |
|