Uses of Interface
org.littleshoot.mina.common.IoServiceConfig

Packages that use IoServiceConfig
org.littleshoot.mina.common Common types required for users to use MINA. 
org.littleshoot.mina.common.support Internal classes used by org.apache.mina.common package. 
org.littleshoot.mina.transport.socket.nio Socket (TCP/IP) and Datagram (UDP/IP) support based on Java NIO (New I/O) API
org.littleshoot.mina.transport.socket.nio.support Internal classes used by org.apache.mina.transport.socket.nio package. 
org.littleshoot.mina.transport.vmpipe In-VM pipe support which removes the overhead of local loopback communication. 
org.littleshoot.mina.transport.vmpipe.support Internal classes used by org.apache.mina.transport.vmpipe package. 
 

Uses of IoServiceConfig in org.littleshoot.mina.common
 

Subinterfaces of IoServiceConfig in org.littleshoot.mina.common
 interface IoAcceptorConfig
          A configuration which is used to configure IoAcceptor.
 interface IoConnectorConfig
          A configuration which is used to configure IoConnector.
 

Methods in org.littleshoot.mina.common that return IoServiceConfig
 IoServiceConfig IoService.getDefaultConfig()
          Returns the default configuration which is used when you didn't specify any configuration.
 IoServiceConfig IoSession.getServiceConfig()
          Returns the IoServiceConfig of this session.
 

Methods in org.littleshoot.mina.common with parameters of type IoServiceConfig
 void IoAcceptor.bind(SocketAddress address, IoHandler handler, IoServiceConfig config)
          Binds to the specified address and handles incoming connections with the specified handler.
 ConnectFuture IoConnector.connect(SocketAddress address, IoHandler handler, IoServiceConfig config)
          Connects to the specified address.
 ConnectFuture IoConnector.connect(SocketAddress address, SocketAddress localAddress, IoHandler handler, IoServiceConfig config)
          Connects to the specified address.
 void IoServiceListener.serviceActivated(IoService service, SocketAddress serviceAddress, IoHandler handler, IoServiceConfig config)
          Invoked when a new service is activated by an IoService.
 void IoServiceListener.serviceDeactivated(IoService service, SocketAddress serviceAddress, IoHandler handler, IoServiceConfig config)
          Invoked when a service is deactivated by an IoService.
 

Uses of IoServiceConfig in org.littleshoot.mina.common.support
 

Classes in org.littleshoot.mina.common.support that implement IoServiceConfig
 class BaseIoAcceptorConfig
          A base implementation of IoAcceptorConfig.
 class BaseIoConnectorConfig
          A base implementation of IoConnectorConfig.
 class BaseIoServiceConfig
          A base implementation of IoServiceConfig.
 

Methods in org.littleshoot.mina.common.support that return IoServiceConfig
 IoServiceConfig DelegatedIoConnector.getDefaultConfig()
           
 IoServiceConfig DelegatedIoAcceptor.getDefaultConfig()
           
 

Methods in org.littleshoot.mina.common.support with parameters of type IoServiceConfig
 void DelegatedIoAcceptor.bind(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture DelegatedIoConnector.connect(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture DelegatedIoConnector.connect(SocketAddress address, SocketAddress localAddress, IoHandler handler, IoServiceConfig config)
           
 void IoServiceListenerSupport.fireServiceActivated(IoService service, SocketAddress serviceAddress, IoHandler handler, IoServiceConfig config)
          Calls IoServiceListener.serviceActivated(IoService, SocketAddress, IoHandler, IoServiceConfig) for all registered listeners.
 void IoServiceListenerSupport.fireServiceDeactivated(IoService service, SocketAddress serviceAddress, IoHandler handler, IoServiceConfig config)
          Calls IoServiceListener.serviceDeactivated(IoService, SocketAddress, IoHandler, IoServiceConfig) for all registered listeners.
 

Uses of IoServiceConfig in org.littleshoot.mina.transport.socket.nio
 

Subinterfaces of IoServiceConfig in org.littleshoot.mina.transport.socket.nio
 interface DatagramServiceConfig
          An IoServiceConfig for DatagramAcceptor and DatagramConnector.
 

Classes in org.littleshoot.mina.transport.socket.nio that implement IoServiceConfig
 class DatagramAcceptorConfig
          An IoAcceptorConfig for DatagramAcceptor.
 class DatagramConnectorConfig
          An IoConnectorConfig for DatagramConnector.
 class SocketAcceptorConfig
          An IoAcceptorConfig for SocketAcceptor.
 class SocketConnectorConfig
          An IoConnectorConfig for SocketConnector.
 

Methods in org.littleshoot.mina.transport.socket.nio with parameters of type IoServiceConfig
 void SocketAcceptor.bind(SocketAddress address, IoHandler handler, IoServiceConfig config)
          Binds to the specified address and handles incoming connections with the specified handler.
 ConnectFuture SocketConnector.connect(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture SocketConnector.connect(SocketAddress address, SocketAddress localAddress, IoHandler handler, IoServiceConfig config)
           
 

Uses of IoServiceConfig in org.littleshoot.mina.transport.socket.nio.support
 

Methods in org.littleshoot.mina.transport.socket.nio.support that return IoServiceConfig
 IoServiceConfig DatagramSessionImpl.getServiceConfig()
           
 

Methods in org.littleshoot.mina.transport.socket.nio.support with parameters of type IoServiceConfig
 void DatagramAcceptorDelegate.bind(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture DatagramConnectorDelegate.connect(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture DatagramConnectorDelegate.connect(SocketAddress address, SocketAddress localAddress, IoHandler handler, IoServiceConfig config)
           
 

Uses of IoServiceConfig in org.littleshoot.mina.transport.vmpipe
 

Methods in org.littleshoot.mina.transport.vmpipe that return IoServiceConfig
 IoServiceConfig VmPipeConnector.getDefaultConfig()
           
 IoServiceConfig VmPipeAcceptor.getDefaultConfig()
           
 

Methods in org.littleshoot.mina.transport.vmpipe with parameters of type IoServiceConfig
 void VmPipeAcceptor.bind(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture VmPipeConnector.connect(SocketAddress address, IoHandler handler, IoServiceConfig config)
           
 ConnectFuture VmPipeConnector.connect(SocketAddress address, SocketAddress localAddress, IoHandler handler, IoServiceConfig config)
           
 

Uses of IoServiceConfig in org.littleshoot.mina.transport.vmpipe.support
 

Methods in org.littleshoot.mina.transport.vmpipe.support that return IoServiceConfig
 IoServiceConfig VmPipe.getConfig()
           
 IoServiceConfig VmPipeSessionImpl.getServiceConfig()
           
 

Constructors in org.littleshoot.mina.transport.vmpipe.support with parameters of type IoServiceConfig
VmPipe(VmPipeAcceptor acceptor, VmPipeAddress address, IoHandler handler, IoServiceConfig config, IoServiceListenerSupport listeners)
           
VmPipeSessionImpl(IoService service, IoServiceConfig serviceConfig, IoServiceListenerSupport serviceListeners, SocketAddress localAddress, IoHandler handler, VmPipe remoteEntry)
           
 



Copyright © 2011-2013 LittleShoot. All Rights Reserved.