io.quarkus.resteasy.runtime.standalone.VertxOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-resteasy Show documentation
Show all versions of quarkus-resteasy Show documentation
REST endpoint framework implementing JAX-RS and more
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);
}