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

io.quarkus.resteasy.runtime.standalone.VertxOutput Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.resteasy.runtime.standalone;

import java.io.IOException;
import java.util.concurrent.CompletionStage;

import io.netty.buffer.ByteBuf;

public interface VertxOutput {
    void write(ByteBuf data, boolean last) throws IOException;

    CompletionStage writeNonBlocking(ByteBuf data, boolean last);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy