Uses of Interface
org.apache.mina.core.session.IoSessionConfig
-
Packages that use IoSessionConfig Package Description org.apache.mina.core.polling Base class for implementing transport based on active polling strategies like NIO select call, or any API based on I/O polling system calls (epoll, poll, select, kqueue, etc).org.apache.mina.core.service org.apache.mina.core.session org.apache.mina.proxy org.apache.mina.transport.socket org.apache.mina.transport.vmpipe In-VM pipe support which removes the overhead of local loopback communication. -
-
Uses of IoSessionConfig in org.apache.mina.core.polling
-
Uses of IoSessionConfig in org.apache.mina.core.service
Fields in org.apache.mina.core.service declared as IoSessionConfig Modifier and Type Field Description protected IoSessionConfig
AbstractIoService. sessionConfig
The defaultIoSessionConfig
which will be used to configure new sessions.Methods in org.apache.mina.core.service that return IoSessionConfig Modifier and Type Method Description IoSessionConfig
IoService. getSessionConfig()
Methods in org.apache.mina.core.service that return types with arguments of type IoSessionConfig Modifier and Type Method Description Class<? extends IoSessionConfig>
DefaultTransportMetadata. getSessionConfigType()
Class<? extends IoSessionConfig>
TransportMetadata. getSessionConfigType()
Constructors in org.apache.mina.core.service with parameters of type IoSessionConfig Constructor Description AbstractIoAcceptor(IoSessionConfig sessionConfig, Executor executor)
Constructor forAbstractIoAcceptor
.AbstractIoConnector(IoSessionConfig sessionConfig, Executor executor)
Constructor forAbstractIoConnector
.AbstractIoService(IoSessionConfig sessionConfig, Executor executor)
Constructor forAbstractIoService
. -
Uses of IoSessionConfig in org.apache.mina.core.session
Classes in org.apache.mina.core.session that implement IoSessionConfig Modifier and Type Class Description class
AbstractIoSessionConfig
A base implementation ofIoSessionConfig
.Fields in org.apache.mina.core.session declared as IoSessionConfig Modifier and Type Field Description protected IoSessionConfig
AbstractIoSession. config
The session configMethods in org.apache.mina.core.session that return IoSessionConfig Modifier and Type Method Description IoSessionConfig
AbstractIoSession. getConfig()
IoSessionConfig
DummySession. getConfig()
IoSessionConfig
IoSession. getConfig()
Methods in org.apache.mina.core.session with parameters of type IoSessionConfig Modifier and Type Method Description void
AbstractIoSessionConfig. setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified config.void
IoSessionConfig. setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified config.void
DummySession. setConfig(IoSessionConfig config)
Sets the configuration of this session. -
Uses of IoSessionConfig in org.apache.mina.proxy
Methods in org.apache.mina.proxy that return IoSessionConfig Modifier and Type Method Description IoSessionConfig
ProxyConnector. getSessionConfig()
Constructors in org.apache.mina.proxy with parameters of type IoSessionConfig Constructor Description ProxyConnector(SocketConnector connector, IoSessionConfig config, Executor executor)
Creates a new proxy connector. -
Uses of IoSessionConfig in org.apache.mina.transport.socket
Subinterfaces of IoSessionConfig in org.apache.mina.transport.socket Modifier and Type Interface Description interface
DatagramSessionConfig
AnIoSessionConfig
for datagram transport type.interface
SocketSessionConfig
AnIoSessionConfig
for socket transport type.Classes in org.apache.mina.transport.socket that implement IoSessionConfig Modifier and Type Class Description class
AbstractDatagramSessionConfig
The Datagram transport session configuration.class
AbstractSocketSessionConfig
The TCP transport session configuration.class
DefaultDatagramSessionConfig
A default implementation ofDatagramSessionConfig
.class
DefaultSocketSessionConfig
A default implementation ofSocketSessionConfig
.Methods in org.apache.mina.transport.socket with parameters of type IoSessionConfig Modifier and Type Method Description void
AbstractDatagramSessionConfig. setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified config.void
AbstractSocketSessionConfig. setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified config. -
Uses of IoSessionConfig in org.apache.mina.transport.vmpipe
Subinterfaces of IoSessionConfig in org.apache.mina.transport.vmpipe Modifier and Type Interface Description interface
VmPipeSessionConfig
AnIoSessionConfig
for vmpipe transport type.
-