All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmmo.vertx.OutputStreamBuffer Maven / Gradle / Ivy

package org.jmmo.vertx;

import io.vertx.core.buffer.Buffer;

import java.io.IOException;
import java.io.OutputStream;

public class OutputStreamBuffer extends OutputStream {
    protected final Buffer buffer;

    public OutputStreamBuffer(Buffer buffer) {
        this.buffer = buffer;
    }

    @Override
    public void write(int b) throws IOException {
        buffer.appendByte((byte) b);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy