Uses of Class
com.caucho.vfs.StreamImpl

Packages that use StreamImpl
com.caucho.env.vfs   
com.caucho.log   
com.caucho.quercus.env   
com.caucho.server.hmux   
com.caucho.server.http   
com.caucho.vfs Resin's Virtual File System. 
 

Uses of StreamImpl in com.caucho.env.vfs
 

Methods in com.caucho.env.vfs that return StreamImpl
 StreamImpl RepositoryPath.openReadImpl()
           
 

Uses of StreamImpl in com.caucho.log
 

Subclasses of StreamImpl in com.caucho.log
 class EnvironmentStream
          A stream that varies depending on the environment class loader.
 class RotateStream
          Automatically-rotating streams.
 class TimestampFilter
          Automatically-rotating streams.
 

Uses of StreamImpl in com.caucho.quercus.env
 

Subclasses of StreamImpl in com.caucho.quercus.env
 class BinaryBuilderStream
          Stream for appending to binary builder.
 

Uses of StreamImpl in com.caucho.server.hmux
 

Methods in com.caucho.server.hmux that return StreamImpl
 StreamImpl HmuxPath.openReadImpl()
          Returns a read stream for a GET request.
 StreamImpl HmuxPath.openReadWriteImpl()
          Returns a read/write pair for a POST request.
 

Uses of StreamImpl in com.caucho.server.http
 

Subclasses of StreamImpl in com.caucho.server.http
 class ContentLengthStream
          Filter so POST readers can only read data up to the content length
 class RawInputStream
          Filter so POST readers can only read data up to the content length
 

Uses of StreamImpl in com.caucho.vfs
 

Subclasses of StreamImpl in com.caucho.vfs
 class Crc64Stream
           
 class DatagramStream
          Specialized stream to handle sockets.
 class DatastoreReadStream
          Stream encapsulating FileInputStream
 class DatastoreWriteStream
          Stream encapsulating FileOutputStream
 class FileReadStream
          Stream encapsulating FileInputStream
 class FileWriteStream
          Stream encapsulating FileOutputStream
 class HttpStreamWrapper
          Facade to HttpStream to properly handle the close.
 class Jar.ZipStreamImpl
          StreamImpl to read from a ZIP file.
 class JniFileStream
          Stream using with JNI.
 class JniStream
          Stream using with JNI.
 class MemoryPath.MemoryStream
           
 class MemoryStream
           
 class MultipartStream
           
 class PipeStream
          Stream allowing two threads to read and write to each other.
 class ReaderStream
           
 class ReaderWriterStream
           
 class SocketChannelStream
          Specialized stream to handle sockets.
 class SocketStream
          Specialized stream to handle sockets.
 class StderrStream
          Stream encapsulating System.err.
 class StdoutStream
          Stream encapsulating System.out.
 class StreamFilter
           
 class StringReader
          A stream reading data from a string.
 class StringStream
           
 class StringWriter
           
 class TempCharStream
           
 class TempReadStream
           
 class TempStream
           
 class VfsStream
          Stream encapsulating InputStream/OutputStream.
 class WriterStreamImpl
          Handles a stream which outputs to a writer.
 

Fields in com.caucho.vfs declared as StreamImpl
protected  StreamImpl StreamFilter.next
           
 

Methods in com.caucho.vfs that return StreamImpl
 StreamImpl ReadStream.getSource()
          Returns the underlying source for the stream.
 StreamImpl WriteStream.getSource()
          Returns the underlying source for the stream.
abstract  StreamImpl QSocket.getStream()
          Returns a stream impl for the socket encapsulating the input and output stream.
 StreamImpl QSocketWrapper.getStream()
          Returns the socket's input stream.
 StreamImpl JniSocketImpl.getStream()
          Returns a stream impl for the socket encapsulating the input and output stream.
 StreamImpl QSocketChannelWrapper.getStream()
          Returns the socket's input stream.
 StreamImpl ConstPath.openAppendImpl()
           
 StreamImpl FilePath.openAppendImpl()
           
 StreamImpl MemoryPath.openAppendImpl()
           
 StreamImpl MergePath.openAppendImpl()
          Opens the best path for appending.
 StreamImpl Path.openAppendImpl()
           
 StreamImpl PathWrapper.openAppendImpl()
           
 StreamImpl GoogleStorePath.openAppendImpl()
           
 StreamImpl ClasspathPath.openReadImpl()
          Returns a read stream for a GET request.
 StreamImpl ConstPath.openReadImpl()
           
 StreamImpl DatastorePath.openReadImpl()
          Returns the stream implementation for a read stream.
 StreamImpl FilePath.openReadImpl()
          Returns the stream implementation for a read stream.
 StreamImpl HttpPath.openReadImpl()
          Returns a read stream for a GET request.
 StreamImpl HttpsPath.openReadImpl()
          Returns a read stream for a GET request.
 StreamImpl JarPath.openReadImpl()
           
 StreamImpl MemoryPath.openReadImpl()
           
 StreamImpl MergePath.openReadImpl()
          Opens the best path for reading.
 StreamImpl NotFoundPath.openReadImpl()
          Throws a FileNotFoundException for any read.
 StreamImpl Path.openReadImpl()
           
 StreamImpl PathWrapper.openReadImpl()
           
 StreamImpl StringPath.openReadImpl()
           
 StreamImpl TcpPath.openReadImpl()
           
 StreamImpl GooglePath.openReadImpl()
          Returns the stream implementation for a read stream.
 StreamImpl ConstPath.openReadWriteImpl()
           
 StreamImpl FilePath.openReadWriteImpl()
           
 StreamImpl HttpPath.openReadWriteImpl()
          Returns a read/write pair for a POST request.
 StreamImpl HttpsPath.openReadWriteImpl()
          Returns a read/write pair for a POST request.
 StreamImpl MergePath.openReadWriteImpl()
          Opens the best path for reading and writing.
 StreamImpl Path.openReadWriteImpl()
           
 StreamImpl PathWrapper.openReadWriteImpl()
           
 StreamImpl TcpPath.openReadWriteImpl()
           
 StreamImpl ConstPath.openWriteImpl()
           
 StreamImpl DatastorePath.openWriteImpl()
           
 StreamImpl FilePath.openWriteImpl()
           
 StreamImpl MemoryPath.openWriteImpl()
           
 StreamImpl MergePath.openWriteImpl()
          Opens the best path for writing.
 StreamImpl Path.openWriteImpl()
           
 StreamImpl PathWrapper.openWriteImpl()
           
 StreamImpl MailtoPath.openWriteImpl()
          Implementation to open a WriteStream.
 StreamImpl GoogleBlobStorePath.openWriteImpl()
           
 StreamImpl GoogleStorePath.openWriteImpl()
           
 

Methods in com.caucho.vfs with parameters of type StreamImpl
 void Crc64Stream.init(StreamImpl next)
          Initialize the filter with a new stream.
 void StreamFilter.init(StreamImpl next)
           
 void WriteStream.init(StreamImpl source)
          Initializes the stream with a given source.
 void ReadStream.init(StreamImpl source, WriteStream sibling)
          Initializes the stream with a given source.
 void ReadStream.setSource(StreamImpl source)
           
 void WriteStream.writeStream(StreamImpl source)
          Writes the contents of a JDK stream.
 

Constructors in com.caucho.vfs with parameters of type StreamImpl
ConstPath(Path root, StreamImpl stream)
           
Crc64Stream(StreamImpl next)
           
ReadStream(StreamImpl source)
          Creates a stream and initializes with a specified source.
ReadStream(StreamImpl source, WriteStream sibling)
          Creates a stream and initializes with a specified source.
StreamImplInputStream(StreamImpl stream)
           
StreamImplOutputStream(StreamImpl stream)
           
WriteStream(StreamImpl source)
          Creates a stream and initializes with a specified source.