Java Doc for StreamImpl.java in  » EJB-Server-resin-3.1.5 » util » com » caucho » vfs » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server resin 3.1.5 » util » com.caucho.vfs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.vfs.StreamImpl

All known Subclasses:   com.caucho.vfs.SocketStream,  com.caucho.vfs.MultipartStream,  com.caucho.vfs.TempReadStream,  com.caucho.vfs.StringWriter,  com.caucho.vfs.MemoryStream,  com.caucho.vfs.TempCharStream,  com.caucho.vfs.HttpStreamWrapper,  com.caucho.vfs.HttpStream,  com.caucho.vfs.StdoutStream,  com.caucho.vfs.StringReader,  com.caucho.vfs.StreamFilter,  com.caucho.vfs.WriterStreamImpl,  com.caucho.vfs.PipeStream,  com.caucho.vfs.ReaderStream,  com.caucho.vfs.StderrStream,  com.caucho.vfs.Crc64Stream,  com.caucho.vfs.TcpStream,  com.caucho.vfs.ReaderWriterStream,  com.caucho.vfs.VfsStream,  com.caucho.vfs.TempStream,  com.caucho.vfs.FileReadStream,  com.caucho.vfs.StringStream,
StreamImpl
public class StreamImpl (Code)
This is the service provider's interface for a stream supported by the VFS.


Field Summary
protected static  NullPath_nullPath
    
protected  Path_path
    


Method Summary
public  booleancanRead()
     Returns true if this is a read stream.
public  booleancanWrite()
     Returns true if this is a writable stream.
public  voidclearWrite()
     Clears any buffered values in the write.
public  voidclose()
     Closes the stream.
public  voidcloseWrite()
     Closes the write half of the stream.
public  voidflush()
     Flushes the write output.
public  voidflushBuffer()
     Flushes buffered writes.
public  voidflushToDisk()
     Flushes the write output, forcing to disk.
public  ObjectgetAttribute(String name)
     Returns a stream attribute.
Parameters:
  name - the attribute name.
public  IteratorgetAttributeNames()
     Returns an iterator of the attribute names.
public  intgetAvailable()
     Returns the number of bytes available without blocking.
public  booleangetFlushOnNewline()
     Returns true if the buffer should be flushed on every newline.
public  byte[]getNewline()
     Returns the stream's natural newline character.
public  PathgetPath()
     Returns the Path associated with the stream.
public  byte[]getReadBuffer()
     Returns the read buffer.
public  longgetReadPosition()
     Returns the current read position of the underlying file.
public  booleanhasSkip()
     Returns true if the stream implements skip.
public  intread(byte[] buffer, int offset, int length)
     Reads the next chunk from the stream.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read.
public  intreadNonBlock(byte[] buffer, int offset, int length)
     Reads the next chunk from the stream in non-blocking mode.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read.
public  intreadTimeout(byte[] buffer, int offset, int length, long timeout)
     Reads the next chunk from the stream in non-blocking mode.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read.
public  voidremoveAttribute(String name)
     Removes a stream attribute.
public  voidseekEnd(long offset)
     Seeks based on the end.
public  voidseekStart(long offset)
     Seeks based on the start.
public  voidsetAttribute(String name, Object value)
     Sets a stream attribute.
public  voidsetPath(Path path)
     Sets the Path associated with the stream.
public  voidsetWriteEncoding(String encoding)
     Sets the write encoding.
public  longskip(long n)
     Skips a number of bytes, returning the bytes skipped.
Parameters:
  n - the number of types to skip.
public  voidwrite(byte[] buffer, int offset, int length, boolean isEnd)
     Writes a buffer to the underlying stream.
public  booleanwrite(byte[] buf1, int off1, int len1, byte[] buf2, int off2, int len2, boolean isEnd)
     Writes a pair of buffer to the underlying stream.

Field Detail
_nullPath
protected static NullPath _nullPath(Code)



_path
protected Path _path(Code)





Method Detail
canRead
public boolean canRead()(Code)
Returns true if this is a read stream.



canWrite
public boolean canWrite()(Code)
Returns true if this is a writable stream.



clearWrite
public void clearWrite()(Code)
Clears any buffered values in the write.



close
public void close() throws IOException(Code)
Closes the stream.



closeWrite
public void closeWrite() throws IOException(Code)
Closes the write half of the stream.



flush
public void flush() throws IOException(Code)
Flushes the write output.



flushBuffer
public void flushBuffer() throws IOException(Code)
Flushes buffered writes.



flushToDisk
public void flushToDisk() throws IOException(Code)
Flushes the write output, forcing to disk.



getAttribute
public Object getAttribute(String name) throws IOException(Code)
Returns a stream attribute.
Parameters:
  name - the attribute name. the attribute value.



getAttributeNames
public Iterator getAttributeNames() throws IOException(Code)
Returns an iterator of the attribute names.



getAvailable
public int getAvailable() throws IOException(Code)
Returns the number of bytes available without blocking. Depending on the stream, this may return less than the actual bytes, but will always return a number > 0 if there is any data available.



getFlushOnNewline
public boolean getFlushOnNewline()(Code)
Returns true if the buffer should be flushed on every newline. This is typically only true for error streams like stderr:.



getNewline
public byte[] getNewline()(Code)
Returns the stream's natural newline character.



getPath
public Path getPath()(Code)
Returns the Path associated with the stream.



getReadBuffer
public byte[] getReadBuffer()(Code)
Returns the read buffer.



getReadPosition
public long getReadPosition()(Code)
Returns the current read position of the underlying file.



hasSkip
public boolean hasSkip()(Code)
Returns true if the stream implements skip.



read
public int read(byte[] buffer, int offset, int length) throws IOException(Code)
Reads the next chunk from the stream.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read. the number of bytes read or -1 on end of file.



readNonBlock
public int readNonBlock(byte[] buffer, int offset, int length) throws IOException(Code)
Reads the next chunk from the stream in non-blocking mode.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read. the number of bytes read or -1 on end of file.



readTimeout
public int readTimeout(byte[] buffer, int offset, int length, long timeout) throws IOException(Code)
Reads the next chunk from the stream in non-blocking mode.
Parameters:
  buffer - byte array receiving the data.
Parameters:
  offset - starting offset into the array.
Parameters:
  length - number of bytes to read. the number of bytes read or -1 on end of file.



removeAttribute
public void removeAttribute(String name) throws IOException(Code)
Removes a stream attribute.
Parameters:
  name - the attribute name.



seekEnd
public void seekEnd(long offset) throws IOException(Code)
Seeks based on the end.



seekStart
public void seekStart(long offset) throws IOException(Code)
Seeks based on the start.



setAttribute
public void setAttribute(String name, Object value) throws IOException(Code)
Sets a stream attribute.
Parameters:
  name - the attribute name.
Parameters:
  value - the attribute value.



setPath
public void setPath(Path path)(Code)
Sets the Path associated with the stream.



setWriteEncoding
public void setWriteEncoding(String encoding)(Code)
Sets the write encoding.



skip
public long skip(long n) throws IOException(Code)
Skips a number of bytes, returning the bytes skipped.
Parameters:
  n - the number of types to skip. the actual bytes skipped.



write
public void write(byte[] buffer, 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.



write
public boolean write(byte[] buf1, int off1, int len1, byte[] buf2, int off2, int len2, boolean isEnd) throws IOException(Code)
Writes a pair of buffer to the underlying stream.
Parameters:
  buf1 - the byte array to write.
Parameters:
  off1 - the offset into the byte array.
Parameters:
  len1 - the number of bytes to write.
Parameters:
  buf2 - the byte array to write.
Parameters:
  off2 - the offset into the byte array.
Parameters:
  len2 - the number of bytes to write.
Parameters:
  isEnd - true when the write is flushing a close.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.