Java org.apache.hadoop.io IOUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.hadoop.io IOUtils fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

voidcleanup(Log log, java.io.Closeable... closeables)
Close the Closeable objects and ignore any Throwable or null pointers.
voidcloseSocket(Socket sock)
Closes the socket ignoring IOException
voidcloseStream(java.io.Closeable stream)
Closes the stream ignoring Throwable .
voidcopyBytes(InputStream in, OutputStream out, int buffSize, boolean close)
Copies from one stream to another.
voidcopyBytes(InputStream in, OutputStream out, Configuration conf, boolean close)
Copies from one stream to another.
voidcopyBytes(InputStream in, OutputStream out, long count, boolean close)
Copies count bytes from one stream to another.
voidcopyBytes(InputStream in, OutputStream out, int buffSize)
Copies from one stream to another.
voidcopyBytes(InputStream in, OutputStream out, Configuration conf)
Copies from one stream to another.
voidreadFully(InputStream in, byte[] buf, int off, int len)
Reads len bytes in a loop.
voidskipFully(InputStream in, long len)
Similar to readFully().