public class ObjectEncoderOutputStream extends OutputStream implements ObjectOutput
| Constructor and Description |
|---|
ObjectEncoderOutputStream(OutputStream out)
Creates a new
ObjectOutput with the estimated length of 512
bytes. |
ObjectEncoderOutputStream(OutputStream out,
int estimatedLength)
Creates a new
ObjectOutput. |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
int |
size() |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObject(Object obj) |
void |
writeShort(int v) |
void |
writeUTF(String str) |
public ObjectEncoderOutputStream(OutputStream out)
ObjectOutput with the estimated length of 512
bytes.out - the OutputStream where the serialized form will be
written outpublic ObjectEncoderOutputStream(OutputStream out, int estimatedLength)
ObjectOutput.out - the OutputStream where the serialized form will be
written outestimatedLength - the estimated byte length of the serialized form of an object.
If the length of the serialized form exceeds this value, the
internal buffer will be expanded automatically at the cost of
memory bandwidth. If this value is too big, it will also waste
memory bandwidth. To avoid unnecessary memory copy or allocation
cost, please specify the properly estimated value.public void writeObject(Object obj) throws IOException
writeObject in interface ObjectOutputIOExceptionpublic void write(int b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface ObjectOutputclose in interface AutoCloseableclose in class OutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in interface ObjectOutputflush in class OutputStreamIOExceptionpublic final int size()
public void write(byte[] b,
int off,
int len)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic final void writeBoolean(boolean v)
throws IOException
writeBoolean in interface DataOutputIOExceptionpublic final void writeByte(int v)
throws IOException
writeByte in interface DataOutputIOExceptionpublic final void writeBytes(String s) throws IOException
writeBytes in interface DataOutputIOExceptionpublic final void writeChar(int v)
throws IOException
writeChar in interface DataOutputIOExceptionpublic final void writeChars(String s) throws IOException
writeChars in interface DataOutputIOExceptionpublic final void writeDouble(double v)
throws IOException
writeDouble in interface DataOutputIOExceptionpublic final void writeFloat(float v)
throws IOException
writeFloat in interface DataOutputIOExceptionpublic final void writeInt(int v)
throws IOException
writeInt in interface DataOutputIOExceptionpublic final void writeLong(long v)
throws IOException
writeLong in interface DataOutputIOExceptionpublic final void writeShort(int v)
throws IOException
writeShort in interface DataOutputIOExceptionpublic final void writeUTF(String str) throws IOException
writeUTF in interface DataOutputIOExceptionCopyright © 2008–2019 The Netty Project. All rights reserved.