Uses of Interface
com.sun.grizzly.streams.StreamReader

Packages that use StreamReader
com.sun.grizzly   
com.sun.grizzly.filterchain   
com.sun.grizzly.nio.transport   
com.sun.grizzly.ssl   
com.sun.grizzly.streams   
 

Uses of StreamReader in com.sun.grizzly
 

Methods in com.sun.grizzly that return StreamReader
 StreamReader Connection.getStreamReader()
          Get the Connection StreamReader, to read data from the Connection.
 

Uses of StreamReader in com.sun.grizzly.filterchain
 

Methods in com.sun.grizzly.filterchain that return StreamReader
 StreamReader FilterChainContext.getStreamReader()
          Get the StreamReader, associated with processing.
 StreamReader StreamTransformerFilter.getStreamReader(StreamReader parentStreamReader)
           
 

Methods in com.sun.grizzly.filterchain with parameters of type StreamReader
 StreamReader StreamTransformerFilter.getStreamReader(StreamReader parentStreamReader)
           
 void FilterChainContext.setStreamReader(StreamReader streamReader)
          Set the StreamReader, associated with processing.
 

Uses of StreamReader in com.sun.grizzly.nio.transport
 

Classes in com.sun.grizzly.nio.transport that implement StreamReader
 class TCPNIOStreamReader
           
 class UDPNIOStreamReader
           
 

Methods in com.sun.grizzly.nio.transport that return StreamReader
 StreamReader TCPNIOConnection.getStreamReader()
           
 StreamReader UDPNIOConnection.getStreamReader()
           
 

Method parameters in com.sun.grizzly.nio.transport with type arguments of type StreamReader
 Future<Integer> TCPNIOStreamReader.notifyCondition(Condition<StreamReader> condition, CompletionHandler<Integer> completionHandler)
           
 Future<Integer> UDPNIOStreamReader.notifyCondition(Condition<StreamReader> condition, CompletionHandler<Integer> completionHandler)
           
 

Uses of StreamReader in com.sun.grizzly.ssl
 

Classes in com.sun.grizzly.ssl that implement StreamReader
 class SSLStreamReader
          SSL aware StreamReader implementation, which work like a wrapper over existing StreamReader.
 

Methods in com.sun.grizzly.ssl that return StreamReader
 StreamReader SSLFilter.getStreamReader(StreamReader parentStreamReader)
           
 

Methods in com.sun.grizzly.ssl with parameters of type StreamReader
 StreamReader SSLFilter.getStreamReader(StreamReader parentStreamReader)
           
 void SSLStreamReader.setUnderlyingReader(StreamReader underlyingReader)
           
 

Constructors in com.sun.grizzly.ssl with parameters of type StreamReader
SSLStreamReader(StreamReader underlyingReader)
           
 

Uses of StreamReader in com.sun.grizzly.streams
 

Subinterfaces of StreamReader in com.sun.grizzly.streams
 interface AddressableStreamReader<A>
          Addressable StreamReader, which could be requested for data source address.
 

Classes in com.sun.grizzly.streams that implement StreamReader
 class AbstractStreamReader
          Each method reads data from the current ByteBuffer.
 class StreamReaderDecorator
           
 

Fields in com.sun.grizzly.streams declared as StreamReader
protected  StreamReader StreamReaderDecorator.underlyingReader
           
 

Methods in com.sun.grizzly.streams that return StreamReader
 StreamReader StreamReaderDecorator.getUnderlyingReader()
           
 

Methods in com.sun.grizzly.streams with parameters of type StreamReader
 void StreamReaderDecorator.setUnderlyingReader(StreamReader underlyingReader)
           
 void AbstractStreamWriter.writeStream(StreamReader streamReader)
          Puts StreamReader available data to this StreamWriter This method will make possible direct writing from StreamReader, avoiding Buffer copying.
 void StreamWriter.writeStream(StreamReader stream)
          Puts StreamReader available data to this StreamWriter This method will make possible direct writing from StreamReader, avoiding Buffer copying.
 

Method parameters in com.sun.grizzly.streams with type arguments of type StreamReader
 Future<Integer> StreamReader.notifyCondition(Condition<StreamReader> condition)
          Method returns Future, using which it's possible check if StreamReader meets specific Condition.
 Future<Integer> AbstractStreamReader.notifyCondition(Condition<StreamReader> condition)
          Method returns Future, using which it's possible check if StreamReader meets specific Condition.
 Future<Integer> StreamReader.notifyCondition(Condition<StreamReader> condition, CompletionHandler<Integer> completionHandler)
          Method returns Future, using which it's possible check if StreamReader meets specific Condition.
 Future<Integer> StreamReaderDecorator.notifyCondition(Condition<StreamReader> condition, CompletionHandler<Integer> completionHandler)
          Method returns Future, using which it's possible check if StreamReader meets specific Condition.
 

Constructors in com.sun.grizzly.streams with parameters of type StreamReader
StreamReaderDecorator(StreamReader underlyingReader)
           
 

Constructor parameters in com.sun.grizzly.streams with type arguments of type StreamReader
AbstractStreamReader.NotifyObject(FutureImpl<Integer> future, CompletionHandler<Integer> completionHandler, Condition<StreamReader> condition)
           
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.