Uses of Class
org.apache.mina.common.TransportType

Packages that use TransportType
org.apache.mina.common Common types required for users to use MINA. 
org.apache.mina.protocol.io A wrapper for org.apache.mina.io package to support low-level I/O. 
org.apache.mina.registry A frontend package that makes setting up MINA easier. 
 

Uses of TransportType in org.apache.mina.common
 

Fields in org.apache.mina.common declared as TransportType
static TransportType TransportType.DATAGRAM
          Transport type: UDP/IP (Registry name: "DATAGRAM" or "UDP")
static TransportType TransportType.SOCKET
          Transport type: TCP/IP (Registry name: "SOCKET" or "TCP")
static TransportType TransportType.VM_PIPE
          Transport type: in-VM pipe (Registry name: "VM_PIPE") Please refer to
Methods in org.apache.mina.common that return TransportType
static TransportType TransportType.getInstance(String name)
          Returns the transport type of the specified name.
 TransportType Session.getTransportType()
          Returns transport type of this session.
 

Uses of TransportType in org.apache.mina.protocol.io
 

Methods in org.apache.mina.protocol.io that return TransportType
 TransportType IoProtocolSession.getTransportType()
           
 

Uses of TransportType in org.apache.mina.registry
 

Methods in org.apache.mina.registry that return TransportType
 TransportType Service.getTransportType()
          Returns the transport type this service uses.
 

Methods in org.apache.mina.registry with parameters of type TransportType
protected  IoAcceptor SimpleServiceRegistry.findIoAcceptor(TransportType transportType)
           
protected  ProtocolAcceptor SimpleServiceRegistry.findProtocolAcceptor(TransportType transportType)
           
 IoAcceptor SimpleServiceRegistry.getIoAcceptor(TransportType transportType)
           
 IoAcceptor ServiceRegistry.getIoAcceptor(TransportType transportType)
           
 ProtocolAcceptor SimpleServiceRegistry.getProtocolAcceptor(TransportType transportType)
           
 ProtocolAcceptor ServiceRegistry.getProtocolAcceptor(TransportType transportType)
           
 Set SimpleServiceRegistry.getServices(TransportType transportType)
           
 Set ServiceRegistry.getServices(TransportType transportType)
          Returns Set of services bound in this registry with the specified transport type.
 

Constructors in org.apache.mina.registry with parameters of type TransportType
Service(String name, TransportType transportType, int port)
          Creates a new instance with the specified protocol name, transport type, and port number to be bound.
Service(String name, TransportType transportType, SocketAddress address)
          Creates a new instance with the specified protocol name, transport type, and socket address to be bound.
 



Copyright © 2004-2005 . All Rights Reserved.