Class VertxOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.spi.AsyncOutputStream
-
- io.quarkus.resteasy.runtime.standalone.VertxOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class VertxOutputStream extends org.jboss.resteasy.spi.AsyncOutputStream
-
-
Constructor Summary
Constructors Constructor Description VertxOutputStream(VertxHttpResponse response, BufferAllocator allocator)Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>asyncFlush()(package private) CompletionStage<Void>asyncUpdateWritten(long len)CompletionStage<Void>asyncWrite(byte[] b, int off, int len)voidclose()voidflush()(package private) voidupdateWritten(long len)voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
VertxOutputStream
public VertxOutputStream(VertxHttpResponse response, BufferAllocator allocator)
Construct a new instance. No write timeout is configured.
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
updateWritten
void updateWritten(long len) throws IOException- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
asyncFlush
public CompletionStage<Void> asyncFlush()
- Specified by:
asyncFlushin classorg.jboss.resteasy.spi.AsyncOutputStream
-
asyncWrite
public CompletionStage<Void> asyncWrite(byte[] b, int off, int len)
- Specified by:
asyncWritein classorg.jboss.resteasy.spi.AsyncOutputStream
-
asyncUpdateWritten
CompletionStage<Void> asyncUpdateWritten(long len)
-
-