Uses of Interface
org.apache.mina.common.IoSessionConfig

Packages that use IoSessionConfig
org.apache.mina.common Common types required for users to use MINA. 
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.common
 

Classes in org.apache.mina.common that implement IoSessionConfig
 class AbstractIoSessionConfig
          A base implementation of IoSessionConfig.
 

Methods in org.apache.mina.common that return IoSessionConfig
 IoSessionConfig IoSession.getConfig()
          Returns the configuration of this session.
 IoSessionConfig DummySession.getConfig()
           
 IoSessionConfig IoService.getSessionConfig()
          Returns the default configuration of the new IoSessions created by this service.
 IoSessionConfig AbstractIoService.getSessionConfig()
           
 

Methods in org.apache.mina.common that return types with arguments of type IoSessionConfig
 Class<? extends IoSessionConfig> TransportMetadata.getSessionConfigType()
          Returns the type of the IoSessionConfig of the service
 Class<? extends IoSessionConfig> DefaultTransportMetadata.getSessionConfigType()
           
 

Methods in org.apache.mina.common with parameters of type IoSessionConfig
protected abstract  void AbstractIoSessionConfig.doSetAll(IoSessionConfig config)
          Implement this method to set all transport-specific configuration properties retrieved from the specified config.
 void IoSessionConfig.setAll(IoSessionConfig config)
          Sets all configuration properties retrieved from the specified config.
 void AbstractIoSessionConfig.setAll(IoSessionConfig config)
           
 void DummySession.setConfig(IoSessionConfig config)
          Sets the configuration of this session.
 

Constructors in org.apache.mina.common with parameters of type IoSessionConfig
AbstractIoAcceptor(IoSessionConfig sessionConfig)
           
AbstractIoConnector(IoSessionConfig sessionConfig)
           
AbstractIoService(IoSessionConfig sessionConfig)
           
AbstractPollingConnectionlessIoAcceptor(IoSessionConfig sessionConfig)
          Creates a new instance.
AbstractPollingConnectionlessIoAcceptor(IoSessionConfig sessionConfig, Executor executor)
          Creates a new instance.
AbstractPollingIoAcceptor(IoSessionConfig sessionConfig, Class<? extends IoProcessor<T>> processorClass)
          Create an acceptor with a single processing thread using a NewThreadExecutor
AbstractPollingIoAcceptor(IoSessionConfig sessionConfig, Class<? extends IoProcessor<T>> processorClass, int processorCount)
           
AbstractPollingIoAcceptor(IoSessionConfig sessionConfig, Executor executor, IoProcessor<T> processor)
           
AbstractPollingIoAcceptor(IoSessionConfig sessionConfig, IoProcessor<T> processor)
           
AbstractPollingIoConnector(IoSessionConfig sessionConfig, Class<? extends IoProcessor<T>> processorClass)
           
AbstractPollingIoConnector(IoSessionConfig sessionConfig, Class<? extends IoProcessor<T>> processorClass, int processorCount)
           
AbstractPollingIoConnector(IoSessionConfig sessionConfig, Executor executor, IoProcessor<T> processor)
           
AbstractPollingIoConnector(IoSessionConfig sessionConfig, IoProcessor<T> processor)
           
 

Constructor parameters in org.apache.mina.common with type arguments of type IoSessionConfig
DefaultTransportMetadata(String providerName, String name, boolean connectionless, boolean fragmentation, Class<? extends SocketAddress> addressType, Class<? extends IoSessionConfig> sessionConfigType, Class<?>... envelopeTypes)
           
 

Uses of IoSessionConfig in org.apache.mina.transport.socket
 

Subinterfaces of IoSessionConfig in org.apache.mina.transport.socket
 interface DatagramSessionConfig
          An IoSessionConfig for datagram transport type.
 interface SocketSessionConfig
          An IoSessionConfig for socket transport type.
 

Classes in org.apache.mina.transport.socket that implement IoSessionConfig
 class AbstractDatagramSessionConfig
           
 class AbstractSocketSessionConfig
           
 class DefaultDatagramSessionConfig
          A default implementation of DatagramSessionConfig.
 class DefaultSocketSessionConfig
          A default implementation of SocketSessionConfig.
 

Methods in org.apache.mina.transport.socket with parameters of type IoSessionConfig
protected  void AbstractDatagramSessionConfig.doSetAll(IoSessionConfig config)
           
protected  void AbstractSocketSessionConfig.doSetAll(IoSessionConfig config)
           
 

Uses of IoSessionConfig in org.apache.mina.transport.vmpipe
 

Subinterfaces of IoSessionConfig in org.apache.mina.transport.vmpipe
 interface VmPipeSessionConfig
          An IoSessionConfig for vmpipe transport type.
 



Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.