Package io.netty.channel.epoll
Class EpollSocketChannel
- java.lang.Object
-
- io.netty.util.DefaultAttributeMap
-
- io.netty.channel.AbstractChannel
-
- io.netty.channel.epoll.AbstractEpollChannel
-
- io.netty.channel.epoll.AbstractEpollStreamChannel
-
- io.netty.channel.epoll.EpollSocketChannel
-
- All Implemented Interfaces:
Channel,ChannelOutboundInvoker,DuplexChannel,SocketChannel,UnixChannel,AttributeMap,java.lang.Comparable<Channel>
public final class EpollSocketChannel extends AbstractEpollStreamChannel implements SocketChannel
SocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private classEpollSocketChannel.EpollSocketChannelUnsafe-
Nested classes/interfaces inherited from class io.netty.channel.epoll.AbstractEpollStreamChannel
AbstractEpollStreamChannel.EpollStreamUnsafe, AbstractEpollStreamChannel.SpliceInTask
-
Nested classes/interfaces inherited from class io.netty.channel.epoll.AbstractEpollChannel
AbstractEpollChannel.AbstractEpollUnsafe
-
Nested classes/interfaces inherited from class io.netty.channel.AbstractChannel
AbstractChannel.AbstractUnsafe
-
Nested classes/interfaces inherited from interface io.netty.channel.Channel
Channel.Unsafe
-
-
Field Summary
Fields Modifier and Type Field Description private EpollSocketChannelConfigconfigprivate java.util.Collection<java.net.InetAddress>tcpMd5SigAddresses-
Fields inherited from class io.netty.channel.epoll.AbstractEpollChannel
active, epollInReadyRunnablePending, flags, inputClosedSeenErrorOnRead, socket
-
-
Constructor Summary
Constructors Constructor Description EpollSocketChannel()EpollSocketChannel(int fd)EpollSocketChannel(Channel parent, LinuxSocket fd, java.net.InetSocketAddress remoteAddress)EpollSocketChannel(LinuxSocket fd, boolean active)EpollSocketChannel(InternetProtocolFamily protocol)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EpollSocketChannelConfigconfig()Returns the configuration of this channel.(package private) booleandoConnect0(java.net.SocketAddress remote)java.net.InetSocketAddresslocalAddress()Returns the local address where this channel is bound to.protected AbstractEpollChannel.AbstractEpollUnsafenewUnsafe()Create a newAbstractChannel.AbstractUnsafeinstance which will be used for the life-time of theChannelServerSocketChannelparent()Returns the parent of this channel.java.net.InetSocketAddressremoteAddress()Returns the remote address where this channel is connected to.(package private) voidsetTcpMd5Sig(java.util.Map<java.net.InetAddress,byte[]> keys)EpollTcpInfotcpInfo()Returns theTCP_INFOfor the current socket.EpollTcpInfotcpInfo(EpollTcpInfo info)Updates and returns theTCP_INFOfor the current socket.-
Methods inherited from class io.netty.channel.epoll.AbstractEpollStreamChannel
doClose, doShutdownOutput, doWrite, doWriteSingle, filterOutboundMessage, isInputShutdown, isOutputShutdown, isShutdown, metadata, shutdown, shutdown, shutdownInput, shutdownInput, shutdownOutput, shutdownOutput, spliceTo, spliceTo, spliceTo, spliceTo
-
Methods inherited from class io.netty.channel.epoll.AbstractEpollChannel
checkResolvable, clearEpollIn, clearFlag, doBeginRead, doBind, doConnect, doDeregister, doDisconnect, doReadBytes, doRegister, doWriteBytes, doWriteOrSendBytes, fd, isActive, isCompatible, isFlagSet, isOpen, isSoErrorZero, localAddress0, newDirectBuffer, newDirectBuffer, remoteAddress0, resetCachedAddresses, setFlag, shouldBreakEpollInReady
-
Methods inherited from class io.netty.channel.AbstractChannel
alloc, bind, bind, bytesBeforeUnwritable, bytesBeforeWritable, close, close, closeFuture, compareTo, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, equals, eventLoop, flush, hashCode, id, invalidateLocalAddress, invalidateRemoteAddress, isRegistered, isWritable, maxMessagesPerWrite, newChannelPipeline, newFailedFuture, newId, newProgressivePromise, newPromise, newSucceededFuture, pipeline, read, toString, unsafe, validateFileRegion, voidPromise, write, write, writeAndFlush, writeAndFlush
-
Methods inherited from class io.netty.util.DefaultAttributeMap
attr, hasAttr
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.netty.util.AttributeMap
attr, hasAttr
-
Methods inherited from interface io.netty.channel.Channel
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, eventLoop, flush, id, isActive, isOpen, isRegistered, isWritable, metadata, pipeline, read, unsafe
-
Methods inherited from interface io.netty.channel.ChannelOutboundInvoker
bind, bind, close, close, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, voidPromise, write, write, writeAndFlush, writeAndFlush
-
Methods inherited from interface io.netty.channel.socket.DuplexChannel
isInputShutdown, isOutputShutdown, isShutdown, shutdown, shutdown, shutdownInput, shutdownInput, shutdownOutput, shutdownOutput
-
-
-
-
Field Detail
-
config
private final EpollSocketChannelConfig config
-
tcpMd5SigAddresses
private volatile java.util.Collection<java.net.InetAddress> tcpMd5SigAddresses
-
-
Constructor Detail
-
EpollSocketChannel
public EpollSocketChannel()
-
EpollSocketChannel
public EpollSocketChannel(InternetProtocolFamily protocol)
-
EpollSocketChannel
public EpollSocketChannel(int fd)
-
EpollSocketChannel
EpollSocketChannel(LinuxSocket fd, boolean active)
-
EpollSocketChannel
EpollSocketChannel(Channel parent, LinuxSocket fd, java.net.InetSocketAddress remoteAddress)
-
-
Method Detail
-
tcpInfo
public EpollTcpInfo tcpInfo()
Returns theTCP_INFOfor the current socket. See man 7 tcp.
-
tcpInfo
public EpollTcpInfo tcpInfo(EpollTcpInfo info)
Updates and returns theTCP_INFOfor the current socket. See man 7 tcp.
-
remoteAddress
public java.net.InetSocketAddress remoteAddress()
Description copied from interface:ChannelReturns the remote address where this channel is connected to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
remoteAddressin interfaceChannel- Specified by:
remoteAddressin interfaceSocketChannel- Overrides:
remoteAddressin classAbstractChannel- Returns:
- the remote address of this channel.
nullif this channel is not connected. If this channel is not connected but it can receive messages from arbitrary remote addresses (e.g.DatagramChannel, useDefaultAddressedEnvelope.recipient()to determine the origination of the received message as this method will returnnull.
-
localAddress
public java.net.InetSocketAddress localAddress()
Description copied from interface:ChannelReturns the local address where this channel is bound to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
localAddressin interfaceChannel- Specified by:
localAddressin interfaceSocketChannel- Overrides:
localAddressin classAbstractChannel- Returns:
- the local address of this channel.
nullif this channel is not bound.
-
config
public EpollSocketChannelConfig config()
Description copied from interface:ChannelReturns the configuration of this channel.- Specified by:
configin interfaceChannel- Specified by:
configin interfaceSocketChannel- Specified by:
configin classAbstractEpollChannel
-
parent
public ServerSocketChannel parent()
Description copied from interface:ChannelReturns the parent of this channel.- Specified by:
parentin interfaceChannel- Specified by:
parentin interfaceSocketChannel- Overrides:
parentin classAbstractChannel- Returns:
- the parent channel.
nullif this channel does not have a parent channel.
-
newUnsafe
protected AbstractEpollChannel.AbstractEpollUnsafe newUnsafe()
Description copied from class:AbstractChannelCreate a newAbstractChannel.AbstractUnsafeinstance which will be used for the life-time of theChannel- Overrides:
newUnsafein classAbstractEpollStreamChannel
-
doConnect0
boolean doConnect0(java.net.SocketAddress remote) throws java.lang.Exception- Overrides:
doConnect0in classAbstractEpollChannel- Throws:
java.lang.Exception
-
setTcpMd5Sig
void setTcpMd5Sig(java.util.Map<java.net.InetAddress,byte[]> keys) throws java.io.IOException- Throws:
java.io.IOException
-
-