Package org.apache.hc.core5.reactor
Class EventMask
- java.lang.Object
-
- org.apache.hc.core5.reactor.EventMask
-
public final class EventMask extends java.lang.Object
Type of I/O event notifications I/O sessions can declare interest in.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description static int
READ
Interest in data input.static int
READ_WRITE
Interest in data input/output.static int
WRITE
Interest in data output.
-
Constructor Summary
Constructors Modifier Constructor Description private
EventMask()
-
-
-
Field Detail
-
READ
public static final int READ
Interest in data input.- See Also:
- Constant Field Values
-
WRITE
public static final int WRITE
Interest in data output.- See Also:
- Constant Field Values
-
READ_WRITE
public static final int READ_WRITE
Interest in data input/output.- See Also:
- Constant Field Values
-
-