org.msgpack.io
Interface Output
- All Superinterfaces:
- Closeable, Flushable
- All Known Implementing Classes:
- ByteBufferOutput, LinkedBufferOutput, StreamOutput
public interface Output
- extends Closeable, Flushable
write
void write(byte[] b,
int off,
int len)
throws IOException
- Throws:
IOException
write
void write(ByteBuffer bb)
throws IOException
- Throws:
IOException
writeByte
void writeByte(byte v)
throws IOException
- Throws:
IOException
writeShort
void writeShort(short v)
throws IOException
- Throws:
IOException
writeInt
void writeInt(int v)
throws IOException
- Throws:
IOException
writeLong
void writeLong(long v)
throws IOException
- Throws:
IOException
writeFloat
void writeFloat(float v)
throws IOException
- Throws:
IOException
writeDouble
void writeDouble(double v)
throws IOException
- Throws:
IOException
writeByteAndByte
void writeByteAndByte(byte b,
byte v)
throws IOException
- Throws:
IOException
writeByteAndShort
void writeByteAndShort(byte b,
short v)
throws IOException
- Throws:
IOException
writeByteAndInt
void writeByteAndInt(byte b,
int v)
throws IOException
- Throws:
IOException
writeByteAndLong
void writeByteAndLong(byte b,
long v)
throws IOException
- Throws:
IOException
writeByteAndFloat
void writeByteAndFloat(byte b,
float v)
throws IOException
- Throws:
IOException
writeByteAndDouble
void writeByteAndDouble(byte b,
double v)
throws IOException
- Throws:
IOException
Copyright © 2011. All Rights Reserved.