Uses of Class
uk.org.ogsadai.sessions.SessionStreamNotFoundException

Packages that use SessionStreamNotFoundException
uk.org.ogsadai.sessions Contains the core classes and interfaces used to support sessions. 
 

Uses of SessionStreamNotFoundException in uk.org.ogsadai.sessions
 

Methods in uk.org.ogsadai.sessions that throw SessionStreamNotFoundException
 java.lang.Object SessionStreamManager.getBlock(SessionStreamID id)
          Gets the next block of data available from the specified session output stream.
 java.lang.Object SessionStreamManager.getFully(SessionStreamID id)
          Gets an aggregate of all the data from the specified session output stream.
 java.lang.Object SessionStreamManager.getNBlocks(SessionStreamID id, int numberOfBlocks)
          Gets an aggregate of a number of available blocks of data from a session output stream.
 void SessionStreamManager.putBlock(SessionStreamID id, java.lang.Object data)
          Puts a block of data onto a specified session stream.
 void SessionStreamManager.putFully(SessionStreamID id, java.lang.Object data)
          Puts a block containing all the input data for a specified session stream into the stream and then closes the stream for further input.
 java.lang.Object SimpleSessionStreamManager.getFully(SessionStreamID id)
           
 java.lang.Object SimpleSessionStreamManager.getNBlocks(SessionStreamID id, int numberOfBlocks)
           
 java.lang.Object SimpleSessionStreamManager.getBlock(SessionStreamID id)
           
 void SimpleSessionStreamManager.putBlock(SessionStreamID id, java.lang.Object data)
           
 void SimpleSessionStreamManager.putFully(SessionStreamID id, java.lang.Object data)
           
private  BlockReader SimpleSessionStreamManager.getBlockReader(SessionStreamID id)
          Gets the BlockReader for the identified session output stream.
private  BlockWriter SimpleSessionStreamManager.getBlockWriter(SessionStreamID id)
          Gets the BlockWriter for the identified session input stream.