public interface IOutputStream extends java.lang.AutoCloseable, ISynchronizable
OutputStream
.Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
synchronize()
Performs a synchronization of the resource.
|
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
void write(int b) throws IOExceptionUnchecked
IOExceptionUnchecked
OutputStream.write(int)
void write(byte[] b) throws IOExceptionUnchecked
IOExceptionUnchecked
OutputStream.write(byte[])
void write(byte[] b, int off, int len) throws IOExceptionUnchecked
IOExceptionUnchecked
OutputStream.write(byte[], int, int)
void flush() throws IOExceptionUnchecked
IOExceptionUnchecked
OutputStream.flush()
void synchronize() throws IOExceptionUnchecked
ISynchronizable
synchronize
in interface ISynchronizable
IOExceptionUnchecked
OutputStream.flush()
void close() throws IOExceptionUnchecked
close
in interface java.lang.AutoCloseable
IOExceptionUnchecked
OutputStream.close()