Java org.apache.hadoop.fs FSDataInputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.hadoop.fs FSDataInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.hadoop.fs FSDataInputStream.

The text is from its open source code.

Subclass

org.apache.hadoop.fs.FSDataInputStream has subclasses.
Click this link to see all its subclasses.

Constructor

Method

longgetPos()
Get the current position in the input stream.
InputStreamgetWrappedStream()
Get a reference to the wrapped input stream.
ByteBufferread(ByteBufferPool bufferPool, int maxLength, EnumSet opts)
intread(ByteBuffer buf)
intread(long position, byte[] buffer, int offset, int length)
Read bytes from the given position in the stream to the given buffer.
voidreadFully(long position, byte[] buffer)
See #readFully(long,byte[],int,int) .
voidreadFully(long position, byte[] buffer, int offset, int length)
Read bytes from the given position in the stream to the given buffer.
voidreleaseBuffer(ByteBuffer buffer)
voidseek(long desired)
Seek to the given offset.