org.das2.util.ByteBufferInputStream

An input stream that wraps an NIO ByteBuffer. Reading from this stream will update the ByteBuffers position. Calling mark() on this input stream will set the mark on the underlying buffer.


available

available( ) → int

Returns:

int

search for examples view on GitHub view source


getByteBuffer

getByteBuffer( ) → ByteBuffer

Returns:

java.nio.ByteBuffer

search for examples view on GitHub view source


mark

mark( int readlimit ) → void

Returns:

void (returns nothing)

search for examples view on GitHub view source


markSupported

markSupported( ) → boolean

Returns:

boolean

search for examples view on GitHub view source


skip

skip( long n ) → long

Returns:

long

search for examples view on GitHub view source