Example usage for io.netty.buffer DefaultByteBufHolder subclass-usage

List of usage examples for io.netty.buffer DefaultByteBufHolder subclass-usage

Introduction

In this page you can find the example usage for io.netty.buffer DefaultByteBufHolder subclass-usage.

Usage

From source file com.digitalpetri.modbus.requests.ByteBufModbusRequest.java

public abstract class ByteBufModbusRequest extends DefaultByteBufHolder implements ModbusRequest {

    private final FunctionCode functionCode;

    public ByteBufModbusRequest(ByteBuf data, FunctionCode functionCode) {
        super(data);

From source file com.digitalpetri.modbus.responses.ByteBufModbusResponse.java

public abstract class ByteBufModbusResponse extends DefaultByteBufHolder implements ModbusResponse {

    private final FunctionCode functionCode;

    protected ByteBufModbusResponse(ByteBuf data, FunctionCode functionCode) {
        super(data);

From source file io.advantageous.conekt.http.impl.AssembledLastHttpContent.java

/**
 * Helper wrapper class which allows to assemble a ByteBuf and a HttpHeaders into one "packet" and so more
 * efficient write it through the pipeline.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file io.grpc.netty.SendGrpcFrameCommand.java

/**
 * Command sent from the transport to the Netty channel to send a GRPC frame to the remote endpoint.
 */
final class SendGrpcFrameCommand extends DefaultByteBufHolder implements WriteQueue.QueuedCommand {
    private final StreamIdHolder stream;
    private final boolean endStream;

From source file io.jsync.http.impl.AssembledLastHttpContent.java

/**
 * Helper wrapper class which allows to assemble a ByteBuf and a HttpHeaders into one "packet" and so more
 * efficient write it through the pipeline.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file io.vertx.core.http.impl.AssembledLastHttpContent.java

/**
 * Helper wrapper class which allows to assemble a ByteBuf and a HttpHeaders into one "packet" and so more
 * efficient write it through the pipeline.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file netty.syslog.Message.java

/**
 * Represents a Syslog content as defined by RFC 5424. See http://tools.ietf.org/html/rfc5424#section-6.
 */
public class Message extends DefaultByteBufHolder {

    @SuppressWarnings("unused")

From source file org.vertx.java.core.http.impl.AssembledLastHttpContent.java

/**
 * Helper wrapper class which allows to assemble a ByteBuf and a HttpHeaders into one "packet" and so more
 * efficient write it through the pipeline.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */