| Modifier and Type | Field and Description |
|---|---|
static EpollIoOps |
EpollIoOps.EPOLLERR
Error condition happened on the associated file descriptor.
|
static EpollIoOps |
EpollIoOps.EPOLLET |
static EpollIoOps |
EpollIoOps.EPOLLIN
Interested in IO events which should be handled by finish pending connect operations
|
static EpollIoOps |
EpollIoOps.EPOLLOUT
Interested in IO events which tell that the underlying channel is writable again or a connection
attempt can be continued.
|
static EpollIoOps |
EpollIoOps.EPOLLRDHUP
Interested in IO events which should be handled by reading data.
|
| Modifier and Type | Method and Description |
|---|---|
EpollIoOps |
EpollIoEvent.ops()
Returns the
EpollIoOps which did trigger the EpollIoEvent. |
static EpollIoOps |
EpollIoOps.valueOf(int value)
Returns a
EpollIoOps for the given value. |
EpollIoOps |
EpollIoOps.with(EpollIoOps ops)
Return a
EpollIoOps which is a combination of the current and the given EpollIoOps. |
EpollIoOps |
EpollIoOps.without(EpollIoOps ops)
Return a
EpollIoOps which is not a combination of the current and the given EpollIoOps. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
EpollIoOps.contains(EpollIoOps ops)
|
EpollIoOps |
EpollIoOps.with(EpollIoOps ops)
Return a
EpollIoOps which is a combination of the current and the given EpollIoOps. |
EpollIoOps |
EpollIoOps.without(EpollIoOps ops)
Return a
EpollIoOps which is not a combination of the current and the given EpollIoOps. |
Copyright © 2008–2024 The Netty Project. All rights reserved.