Example usage for io.vertx.core.buffer Buffer appendBuffer

List of usage examples for io.vertx.core.buffer Buffer appendBuffer

Introduction

In this page you can find the example usage for io.vertx.core.buffer Buffer appendBuffer.

Prototype

@Fluent
Buffer appendBuffer(Buffer buff, int offset, int len);

Source Link

Document

Appends the specified Buffer starting at the offset using len to the end of this Buffer.

Usage

From source file:io.fabric8.msg.jnatsd.protocol.BufferWrapper.java

License:Apache License

public void appendTo(Buffer buffer) {
    buffer.appendBuffer(this.buffer, start, (end - start));
}