public final class EpollIoOps extends Object implements io.netty.channel.IoOps
IoOps that is used by EpollIoHandler and so for epoll based transports.| Modifier and Type | Field and Description |
|---|---|
static EpollIoOps |
EPOLLERR
Error condition happened on the associated file descriptor.
|
static EpollIoOps |
EPOLLET |
static EpollIoOps |
EPOLLIN
Interested in IO events which should be handled by finish pending connect operations
|
static EpollIoOps |
EPOLLOUT
Interested in IO events which tell that the underlying channel is writable again or a connection
attempt can be continued.
|
static EpollIoOps |
EPOLLRDHUP
Interested in IO events which should be handled by reading data.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(EpollIoOps ops)
|
boolean |
equals(Object o) |
int |
hashCode() |
String |
toString() |
int |
value()
Returns the underlying value of the
EpollIoOps. |
static EpollIoOps |
valueOf(int value)
Returns a
EpollIoOps for the given value. |
EpollIoOps |
with(EpollIoOps ops)
Return a
EpollIoOps which is a combination of the current and the given EpollIoOps. |
EpollIoOps |
without(EpollIoOps ops)
Return a
EpollIoOps which is not a combination of the current and the given EpollIoOps. |
public static final EpollIoOps EPOLLOUT
public static final EpollIoOps EPOLLIN
public static final EpollIoOps EPOLLERR
public static final EpollIoOps EPOLLRDHUP
public static final EpollIoOps EPOLLET
public boolean contains(EpollIoOps ops)
ops - the ops.true if a combination of the given.public EpollIoOps with(EpollIoOps ops)
EpollIoOps which is a combination of the current and the given EpollIoOps.ops - the EpollIoOps that should be added to this one.EpollIoOps.public EpollIoOps without(EpollIoOps ops)
EpollIoOps which is not a combination of the current and the given EpollIoOps.ops - the EpollIoOps that should be remove from this one.EpollIoOps.public int value()
EpollIoOps.public static EpollIoOps valueOf(int value)
EpollIoOps for the given value.value - the valueEpollIoOps.Copyright © 2008–2024 The Netty Project. All rights reserved.