| java.lang.Object com.caucho.vfs.StreamImpl com.caucho.vfs.VfsStream
All known Subclasses: com.caucho.vfs.FileWriteStream,
VfsStream | public class VfsStream extends StreamImpl (Code) | | Stream encapsulating InputStream/OutputStream.
|
VfsStream | public VfsStream()(Code) | | Create an empty VfsStream.
|
canRead | public boolean canRead()(Code) | | |
canWrite | public boolean canWrite()(Code) | | |
getFlushOnNewline | public boolean getFlushOnNewline()(Code) | | |
getNewline | public byte[] getNewline()(Code) | | |
getReadPosition | public long getReadPosition()(Code) | | |
hasSkip | public boolean hasSkip()(Code) | | |
init | public void init(InputStream is, OutputStream os)(Code) | | Initializes a VfsStream with an input/output stream pair. Before a
read, the output will be flushed to avoid deadlocks.
Parameters: is - the underlying InputStream. Parameters: os - the underlying OutputStream. |
openRead | public static ReadStream openRead(InputStream is)(Code) | | Opens a read stream based on a java.io.InputStream.
Parameters: is - the underlying InputStream. the new ReadStream |
setCloseChildOnClose | public void setCloseChildOnClose(boolean close)(Code) | | |
setFlushOnNewline | public void setFlushOnNewline(boolean value)(Code) | | |
setNewline | public void setNewline(byte[] newline)(Code) | | |
write | public void write(byte[] buf, int offset, int length, boolean isEnd) throws IOException(Code) | | Writes a buffer to the underlying stream.
Parameters: buffer - the byte array to write. Parameters: offset - the offset into the byte array. Parameters: length - the number of bytes to write. Parameters: isEnd - true when the write is flushing a close. |
Methods inherited from com.caucho.vfs.StreamImpl | public boolean canRead()(Code)(Java Doc) public boolean canWrite()(Code)(Java Doc) public void clearWrite()(Code)(Java Doc) public void close() throws IOException(Code)(Java Doc) public void closeWrite() throws IOException(Code)(Java Doc) public void flush() throws IOException(Code)(Java Doc) public void flushBuffer() throws IOException(Code)(Java Doc) public void flushToDisk() throws IOException(Code)(Java Doc) public Object getAttribute(String name) throws IOException(Code)(Java Doc) public Iterator getAttributeNames() throws IOException(Code)(Java Doc) public int getAvailable() throws IOException(Code)(Java Doc) public boolean getFlushOnNewline()(Code)(Java Doc) public byte[] getNewline()(Code)(Java Doc) public Path getPath()(Code)(Java Doc) public byte[] getReadBuffer()(Code)(Java Doc) public long getReadPosition()(Code)(Java Doc) public boolean hasSkip()(Code)(Java Doc) public int read(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc) public int readNonBlock(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc) public int readTimeout(byte[] buffer, int offset, int length, long timeout) throws IOException(Code)(Java Doc) public void removeAttribute(String name) throws IOException(Code)(Java Doc) public void seekEnd(long offset) throws IOException(Code)(Java Doc) public void seekStart(long offset) throws IOException(Code)(Java Doc) public void setAttribute(String name, Object value) throws IOException(Code)(Java Doc) public void setPath(Path path)(Code)(Java Doc) public void setWriteEncoding(String encoding)(Code)(Java Doc) public long skip(long n) throws IOException(Code)(Java Doc) public void write(byte[] buffer, int offset, int length, boolean isEnd) throws IOException(Code)(Java Doc) public boolean write(byte[] buf1, int off1, int len1, byte[] buf2, int off2, int len2, boolean isEnd) throws IOException(Code)(Java Doc)
|
|
|