Class ByteBufferBackedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class ByteBufferBackedOutputStream extends java.io.OutputStream
SimpleOutputStream
implementation that appends content written in givenByteBuffer
instance.
-
-
Constructor Summary
Constructors Constructor Description ByteBufferBackedOutputStream(java.nio.ByteBuffer buf)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] bytes, int off, int len)
void
write(int b)
-
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] bytes, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-