RedisOutputStream

The class implements a buffered output stream without synchronization There are also special operations like in-place string encoding. This stream fully ignore mark/reset and should not be used outside Redis

Constructors

this
this(OutputStream outputStream)
Undocumented in source.
this
this(OutputStream outputStream, int size)
Undocumented in source.

Members

Aliases

write
alias write = FilterOutputStream.write
Undocumented in source.
write
alias write = OutputStream.write
Undocumented in source.

Functions

flush
void flush()
Undocumented in source. Be warned that the author may not have intended to support it.
write
void write(byte b)
Undocumented in source. Be warned that the author may not have intended to support it.
write
void write(byte[] b)
Undocumented in source. Be warned that the author may not have intended to support it.
write
void write(byte[] b, int off, int len)
Undocumented in source. Be warned that the author may not have intended to support it.
writeCrLf
void writeCrLf()
Undocumented in source. Be warned that the author may not have intended to support it.
writeIntCrLf
void writeIntCrLf(int value)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

buf
byte[] buf;
Undocumented in source.
count
int count;
Undocumented in source.

Meta