Package org.jboss.resteasy.spi
Class BlockingAsyncOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.spi.AsyncOutputStream
-
- org.jboss.resteasy.spi.BlockingAsyncOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class BlockingAsyncOutputStream extends AsyncOutputStream
-
-
Constructor Summary
Constructors Constructor Description BlockingAsyncOutputStream(OutputStream outputStream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>
asyncFlush()
Flushes this async output stream.CompletionStage<Void>
asyncWrite(byte[] bytes, int offset, int length)
Writes to this async output stream.void
close()
boolean
equals(Object obj)
void
flush()
int
hashCode()
String
toString()
void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
BlockingAsyncOutputStream
public BlockingAsyncOutputStream(OutputStream outputStream)
-
-
Method Detail
-
asyncFlush
public CompletionStage<Void> asyncFlush()
Description copied from class:AsyncOutputStream
Flushes this async output stream.- Specified by:
asyncFlush
in classAsyncOutputStream
- Returns:
- a
CompletionStage
notified on completion of the flush operation.
-
asyncWrite
public CompletionStage<Void> asyncWrite(byte[] bytes, int offset, int length)
Description copied from class:AsyncOutputStream
Writes to this async output stream.- Specified by:
asyncWrite
in classAsyncOutputStream
- Parameters:
bytes
- the bytes to writeoffset
- the offset from which to start writing in the given byte array.length
- the number of bytes to write from the given byte array- Returns:
- a
CompletionStage
notified on completion of the write operation.
-
write
public void write(int b) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] b) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
-