Package io.netty.channel.udt.nio
Class NioUdtProvider<T extends UdtChannel>
- java.lang.Object
-
- io.netty.channel.udt.nio.NioUdtProvider<T>
-
- All Implemented Interfaces:
ChannelFactory<T>,ChannelFactory<T>
@Deprecated public final class NioUdtProvider<T extends UdtChannel> extends java.lang.Object implements ChannelFactory<T>
Deprecated.The UDT transport is no longer maintained and will be removed.UDT NIO components provider:Provides
ChannelFactoryfor UDT channels.Provides
SelectorProviderfor UDT channels.
-
-
Field Summary
Fields Modifier and Type Field Description static ChannelFactory<UdtServerChannel>BYTE_ACCEPTORDeprecated.ChannelFactoryfor UDT Byte Acceptor.static ChannelFactory<UdtChannel>BYTE_CONNECTORDeprecated.ChannelFactoryfor UDT Byte Connector.static java.nio.channels.spi.SelectorProviderBYTE_PROVIDERDeprecated.SelectorProviderfor UDT Byte channels.static ChannelFactory<UdtChannel>BYTE_RENDEZVOUSDeprecated.ChannelFactoryfor UDT Byte Rendezvous.static ChannelFactory<UdtServerChannel>MESSAGE_ACCEPTORDeprecated.ChannelFactoryfor UDT Message Acceptor.static ChannelFactory<UdtChannel>MESSAGE_CONNECTORDeprecated.ChannelFactoryfor UDT Message Connector.static java.nio.channels.spi.SelectorProviderMESSAGE_PROVIDERDeprecated.SelectorProviderfor UDT Message channels.static ChannelFactory<UdtChannel>MESSAGE_RENDEZVOUSDeprecated.ChannelFactoryfor UDT Message Rendezvous.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static com.barchart.udt.nio.ChannelUDTchannelUDT(Channel channel)Deprecated.Expose underlyingChannelUDTfor debugging and monitoring.com.barchart.udt.nio.KindUDTkind()Deprecated.UDT Channel Kind.TnewChannel()Deprecated.static com.barchart.udt.SocketUDTsocketUDT(Channel channel)Deprecated.Expose underlyingSocketUDTfor debugging and monitoring.com.barchart.udt.TypeUDTtype()Deprecated.UDT Socket Type.
-
-
-
Field Detail
-
BYTE_ACCEPTOR
public static final ChannelFactory<UdtServerChannel> BYTE_ACCEPTOR
Deprecated.
-
BYTE_CONNECTOR
public static final ChannelFactory<UdtChannel> BYTE_CONNECTOR
Deprecated.
-
BYTE_PROVIDER
public static final java.nio.channels.spi.SelectorProvider BYTE_PROVIDER
Deprecated.SelectorProviderfor UDT Byte channels. SeeTypeUDT.STREAM.
-
BYTE_RENDEZVOUS
public static final ChannelFactory<UdtChannel> BYTE_RENDEZVOUS
Deprecated.
-
MESSAGE_ACCEPTOR
public static final ChannelFactory<UdtServerChannel> MESSAGE_ACCEPTOR
Deprecated.
-
MESSAGE_CONNECTOR
public static final ChannelFactory<UdtChannel> MESSAGE_CONNECTOR
Deprecated.
-
MESSAGE_PROVIDER
public static final java.nio.channels.spi.SelectorProvider MESSAGE_PROVIDER
Deprecated.SelectorProviderfor UDT Message channels. SeeTypeUDT.DATAGRAM.
-
MESSAGE_RENDEZVOUS
public static final ChannelFactory<UdtChannel> MESSAGE_RENDEZVOUS
Deprecated.
-
-
Method Detail
-
channelUDT
public static com.barchart.udt.nio.ChannelUDT channelUDT(Channel channel)
Deprecated.Expose underlyingChannelUDTfor debugging and monitoring.- Returns:
- underlying
ChannelUDTor null, if parameter is notUdtChannel
-
socketUDT
public static com.barchart.udt.SocketUDT socketUDT(Channel channel)
Deprecated.Expose underlyingSocketUDTfor debugging and monitoring.- Returns:
- underlying
SocketUDTor null, if parameter is notUdtChannel
-
kind
public com.barchart.udt.nio.KindUDT kind()
Deprecated.UDT Channel Kind. SeeKindUDT
-
newChannel
public T newChannel()
Deprecated.- Specified by:
newChannelin interfaceChannelFactory<T extends UdtChannel>- Specified by:
newChannelin interfaceChannelFactory<T extends UdtChannel>
-
type
public com.barchart.udt.TypeUDT type()
Deprecated.UDT Socket Type. SeeTypeUDT
-
-