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

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

Uses of IoServiceConfig in org.apache.mina.common
 

Subinterfaces of IoServiceConfig in org.apache.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.apache.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.apache.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.apache.mina.common.support
 

Classes in org.apache.mina.common.support that implement IoServiceConfig
 class org.apache.mina.common.support.BaseIoAcceptorConfig
           
 class org.apache.mina.common.support.BaseIoConnectorConfig
           
 class org.apache.mina.common.support.BaseIoServiceConfig
           
 

Uses of IoServiceConfig in org.apache.mina.integration.spring
 

Methods in org.apache.mina.integration.spring that return IoServiceConfig
 IoServiceConfig Binding.getServiceConfig()
           
 

Methods in org.apache.mina.integration.spring with parameters of type IoServiceConfig
 void Binding.setServiceConfig(IoServiceConfig serviceConfig)
           
 

Constructors in org.apache.mina.integration.spring with parameters of type IoServiceConfig
Binding(SocketAddress address, IoHandler handler, IoServiceConfig serviceConfig)
          Creates a new instance using the specified values.
 

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

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

Classes in org.apache.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.apache.mina.transport.socket.nio that return IoServiceConfig
 IoServiceConfig SocketAcceptor.getDefaultConfig()
           
 IoServiceConfig SocketConnector.getDefaultConfig()
           
 

Methods in org.apache.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.apache.mina.transport.vmpipe
 

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

Methods in org.apache.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)
           
 



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