Module org.newsclub.net.unix
Package org.newsclub.net.unix
Class AFAddressFamilyConfig<A extends AFSocketAddress>
java.lang.Object
org.newsclub.net.unix.AFAddressFamilyConfig<A>
- Type Parameters:
A
- The supported address type.
The implementation-specifics for a given address family implementation.
- Author:
- Christian Kohlschütter
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract Class
<? extends AFDatagramChannel<A>> Returns the implementation'sDatagramChannel
class.protected abstract Class
<? extends AFDatagramSocket<A>> Returns the implementation'sDatagramSocket
class.protected abstract AFDatagramSocket.Constructor
<A> Returns the implementation'sDatagramSocket
constructor.protected abstract Class
<? extends AFServerSocketChannel<A>> Returns the implementation'sServerSocketChannel
class.protected abstract Class
<? extends AFServerSocket<A>> Returns the implementation'sServerSocket
class.protected abstract AFServerSocket.Constructor
<A> Returns the implementation'sServerSocket
constructor.protected abstract Class
<? extends AFSocketChannel<A>> Returns the implementation'sSocketChannel
class.Returns the implementation'sSocket
class.protected abstract AFSocket.Constructor
<A> Returns the implementation'sSocket
constructor.
-
Constructor Details
-
AFAddressFamilyConfig
protected AFAddressFamilyConfig()Constructor.
-
-
Method Details
-
socketClass
-
socketConstructor
-
serverSocketClass
Returns the implementation'sServerSocket
class.- Returns:
- The implementation's
ServerSocket
class.
-
serverSocketConstructor
Returns the implementation'sServerSocket
constructor.- Returns:
- The implementation's
ServerSocket
constructor.
-
socketChannelClass
Returns the implementation'sSocketChannel
class.- Returns:
- The implementation's
SocketChannel
class..
-
serverSocketChannelClass
Returns the implementation'sServerSocketChannel
class.- Returns:
- The implementation's
ServerSocketChannel
class.
-
datagramSocketClass
Returns the implementation'sDatagramSocket
class.- Returns:
- The implementation's
DatagramSocket
class.
-
datagramSocketConstructor
Returns the implementation'sDatagramSocket
constructor.- Returns:
- The implementation's
DatagramSocket
constructor.
-
datagramChannelClass
Returns the implementation'sDatagramChannel
class.- Returns:
- The implementation's
DatagramChannel
class.
-