WARNING: Most of this content (with the exception of the Mozilla 1.9 XPCOM reference) is very old, and can be expected to be out of date and possibly obsolete. For better XUL documentation, please visit the XUL hub at the Mozilla Developer Center.
nsISeekableStream
| IID: | 8429d350-1040-4661-8b71-f2a6ba455980 |
| Inherits From: | nsISupports |
This interface is implemented by the following components:
- @mozilla.org/io/multiplex-input-stream;1
- @mozilla.org/io/string-input-stream;1
- @mozilla.org/network/buffered-input-stream;1
- @mozilla.org/network/buffered-output-stream;1
- @mozilla.org/network/file-input-stream;1
- @mozilla.org/network/file-output-stream;1
- @mozilla.org/network/mime-input-stream;1
- @mozilla.org/network/safe-file-output-stream;1
Constants
| PRInt32 | NS_SEEK_SET | = 0 |
| PRInt32 | NS_SEEK_CUR | = 1 |
| PRInt32 | NS_SEEK_END | = 2 |
Methods
void seek ( PRInt32 whence , PRInt64 offset )
void setEOF ( )
PRInt64 tell ( )
void seek ( PRInt32 whence , PRInt64 offset )
This method moves the stream offset of the steam implementing this interface.
- Arguments:
- whence: specifies how to interpret the 'offset' parameter in setting the stream offset associated with the implementing stream.
- offset: specifies a value, in bytes, that is used in conjunction with the 'whence' parameter to set the stream offset of the implementing stream. A negative value causes seeking in the reverse direction.
Reference documentation is generated from Mozilla's source.
