Package | Description |
---|---|
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
io.netty.channel.kqueue |
BSD specific transport.
|
io.netty.channel.unix |
Unix specific transport.
|
Modifier and Type | Method and Description |
---|---|
DomainSocketAddress |
EpollDomainSocketChannel.localAddress() |
DomainSocketAddress |
EpollDomainDatagramChannel.localAddress() |
DomainSocketAddress |
EpollServerDomainSocketChannel.localAddress() |
protected DomainSocketAddress |
EpollDomainSocketChannel.localAddress0() |
protected DomainSocketAddress |
EpollDomainDatagramChannel.localAddress0() |
protected DomainSocketAddress |
EpollServerDomainSocketChannel.localAddress0() |
DomainSocketAddress |
EpollDomainSocketChannel.remoteAddress() |
DomainSocketAddress |
EpollDomainDatagramChannel.remoteAddress() |
DomainSocketAddress |
EpollServerDomainSocketChannel.remoteAddress() |
protected DomainSocketAddress |
EpollDomainSocketChannel.remoteAddress0() |
protected DomainSocketAddress |
EpollDomainDatagramChannel.remoteAddress0() |
Modifier and Type | Method and Description |
---|---|
DomainSocketAddress |
KQueueDomainDatagramChannel.localAddress() |
DomainSocketAddress |
KQueueServerDomainSocketChannel.localAddress() |
DomainSocketAddress |
KQueueDomainSocketChannel.localAddress() |
protected DomainSocketAddress |
KQueueDomainDatagramChannel.localAddress0() |
protected DomainSocketAddress |
KQueueServerDomainSocketChannel.localAddress0() |
protected DomainSocketAddress |
KQueueDomainSocketChannel.localAddress0() |
DomainSocketAddress |
KQueueDomainDatagramChannel.remoteAddress() |
DomainSocketAddress |
KQueueServerDomainSocketChannel.remoteAddress() |
DomainSocketAddress |
KQueueDomainSocketChannel.remoteAddress() |
protected DomainSocketAddress |
KQueueDomainDatagramChannel.remoteAddress0() |
protected DomainSocketAddress |
KQueueDomainSocketChannel.remoteAddress0() |
Modifier and Type | Class and Description |
---|---|
class |
DomainDatagramSocketAddress
Act as special
DomainSocketAddress to be able to easily pass all needed data from JNI without the need
to create more objects then needed. |
Modifier and Type | Method and Description |
---|---|
DomainSocketAddress |
DomainSocketChannel.localAddress() |
DomainSocketAddress |
ServerDomainSocketChannel.localAddress() |
DomainSocketAddress |
DomainDatagramChannel.localAddress() |
DomainSocketAddress |
Socket.localDomainSocketAddress() |
DomainSocketAddress |
DomainSocketChannel.remoteAddress() |
DomainSocketAddress |
ServerDomainSocketChannel.remoteAddress() |
DomainSocketAddress |
DomainDatagramChannel.remoteAddress() |
DomainSocketAddress |
Socket.remoteDomainSocketAddress() |
Constructor and Description |
---|
DomainDatagramPacket(ByteBuf data,
DomainSocketAddress recipient)
Create a new instance with the specified packet
data and recipient address. |
DomainDatagramPacket(ByteBuf data,
DomainSocketAddress recipient,
DomainSocketAddress sender)
Create a new instance with the specified packet
data , recipient address, and sender
address. |
Copyright © 2008–2024 The Netty Project. All rights reserved.