Uses of Class
org.apache.mina.transport.socket.apr.AprSession

Uses of AprSession in org.apache.mina.transport.socket.apr
 

Methods in org.apache.mina.transport.socket.apr that return AprSession
protected  AprSession AprSocketAcceptor.accept(IoProcessor<AprSession> processor, java.lang.Long handle)
          
protected  AprSession AprSocketConnector.newSession(IoProcessor<AprSession> processor, java.lang.Long handle)
          
 

Methods in org.apache.mina.transport.socket.apr that return types with arguments of type AprSession
protected  java.util.Iterator<AprSession> AprIoProcessor.allSessions()
          
 IoProcessor<AprSession> AprSession.getProcessor()
          
protected  java.util.Iterator<AprSession> AprIoProcessor.selectedSessions()
          
 

Methods in org.apache.mina.transport.socket.apr with parameters of type AprSession
protected  void AprIoProcessor.destroy(AprSession session)
          
protected  SessionState AprIoProcessor.getState(AprSession session)
          
protected  void AprIoProcessor.init(AprSession session)
           
protected  boolean AprIoProcessor.isInterestedInRead(AprSession session)
          
protected  boolean AprIoProcessor.isInterestedInWrite(AprSession session)
          
protected  boolean AprIoProcessor.isReadable(AprSession session)
          
protected  boolean AprIoProcessor.isWritable(AprSession session)
          
protected  int AprIoProcessor.read(AprSession session, IoBuffer buffer)
          
protected  void AprIoProcessor.setInterestedInRead(AprSession session, boolean isInterested)
          
protected  void AprIoProcessor.setInterestedInWrite(AprSession session, boolean isInterested)
          
protected  int AprIoProcessor.transferFile(AprSession session, FileRegion region, int length)
          
protected  int AprIoProcessor.write(AprSession session, IoBuffer buf, int length)
          
 

Method parameters in org.apache.mina.transport.socket.apr with type arguments of type AprSession
protected  AprSession AprSocketAcceptor.accept(IoProcessor<AprSession> processor, java.lang.Long handle)
          
protected  AprSession AprSocketConnector.newSession(IoProcessor<AprSession> processor, java.lang.Long handle)
          
 

Constructor parameters in org.apache.mina.transport.socket.apr with type arguments of type AprSession
AprSocketAcceptor(java.util.concurrent.Executor executor, IoProcessor<AprSession> processor)
          Constructor for AprSocketAcceptor with a given Executor for handling connection events and a given AprIoProcessor for handling I/O events, useful for sharing the same processor and executor over multiple IoService of the same type.
AprSocketAcceptor(IoProcessor<AprSession> processor)
          Constructor for AprSocketAcceptor with default configuration but a specific AprIoProcessor, useful for sharing the same processor over multiple IoService of the same type.
AprSocketConnector(java.util.concurrent.Executor executor, IoProcessor<AprSession> processor)
          Constructor for AprSocketConnector with a given Executor for handling connection events and a given IoProcessor for handling I/O events, useful for sharing the same processor and executor over multiple IoService of the same type.
AprSocketConnector(IoProcessor<AprSession> processor)
          Constructor for AprSocketConnector with default configuration but a specific IoProcessor, useful for sharing the same processor over multiple IoService of the same type.
 



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