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
ChannelFactory
for UDT channels.Provides
SelectorProvider
for UDT channels.
-
-
Field Summary
Fields Modifier and Type Field Description static ChannelFactory<UdtServerChannel>
BYTE_ACCEPTOR
Deprecated.ChannelFactory
for UDT Byte Acceptor.static ChannelFactory<UdtChannel>
BYTE_CONNECTOR
Deprecated.ChannelFactory
for UDT Byte Connector.static java.nio.channels.spi.SelectorProvider
BYTE_PROVIDER
Deprecated.SelectorProvider
for UDT Byte channels.static ChannelFactory<UdtChannel>
BYTE_RENDEZVOUS
Deprecated.ChannelFactory
for UDT Byte Rendezvous.static ChannelFactory<UdtServerChannel>
MESSAGE_ACCEPTOR
Deprecated.ChannelFactory
for UDT Message Acceptor.static ChannelFactory<UdtChannel>
MESSAGE_CONNECTOR
Deprecated.ChannelFactory
for UDT Message Connector.static java.nio.channels.spi.SelectorProvider
MESSAGE_PROVIDER
Deprecated.SelectorProvider
for UDT Message channels.static ChannelFactory<UdtChannel>
MESSAGE_RENDEZVOUS
Deprecated.ChannelFactory
for 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.ChannelUDT
channelUDT(Channel channel)
Deprecated.Expose underlyingChannelUDT
for debugging and monitoring.com.barchart.udt.nio.KindUDT
kind()
Deprecated.UDT Channel Kind.T
newChannel()
Deprecated.static com.barchart.udt.SocketUDT
socketUDT(Channel channel)
Deprecated.Expose underlyingSocketUDT
for debugging and monitoring.com.barchart.udt.TypeUDT
type()
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.SelectorProvider
for 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.SelectorProvider
for 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 underlyingChannelUDT
for debugging and monitoring.- Returns:
- underlying
ChannelUDT
or null, if parameter is notUdtChannel
-
socketUDT
public static com.barchart.udt.SocketUDT socketUDT(Channel channel)
Deprecated.Expose underlyingSocketUDT
for debugging and monitoring.- Returns:
- underlying
SocketUDT
or 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:
newChannel
in interfaceChannelFactory<T extends UdtChannel>
- Specified by:
newChannel
in interfaceChannelFactory<T extends UdtChannel>
-
type
public com.barchart.udt.TypeUDT type()
Deprecated.UDT Socket Type. SeeTypeUDT
-
-