Java io.netty.buffer ByteBufInputStream fields, constructors, methods, implement or subclass

Example usage for Java io.netty.buffer ByteBufInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.buffer ByteBufInputStream.

The text is from its open source code.

Subclass

io.netty.buffer.ByteBufInputStream has subclasses.
Click this link to see all its subclasses.

Constructor

ByteBufInputStream(ByteBuf buffer, int length, boolean releaseOnClose)
Creates a new stream which reads data from the specified buffer starting at the current readerIndex and ending at readerIndex + length .
ByteBufInputStream(ByteBuf buffer)
Creates a new stream which reads data from the specified buffer starting at the current readerIndex and ending at the current writerIndex .
ByteBufInputStream(ByteBuf buffer, int length)
Creates a new stream which reads data from the specified buffer starting at the current readerIndex and ending at readerIndex + length .
ByteBufInputStream(ByteBuf buffer, boolean releaseOnClose)
Creates a new stream which reads data from the specified buffer starting at the current readerIndex and ending at the current writerIndex .

Method