Package org.jboss.marshalling
Class LimitedByteOutput
java.lang.Object
java.io.OutputStream
org.jboss.marshalling.SimpleByteOutput
org.jboss.marshalling.ByteOutputStream
org.jboss.marshalling.LimitedByteOutput
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable,ByteOutput
A limited byte output stream. Throws an exception if too many bytes are written.
-
Field Summary
Fields inherited from class org.jboss.marshalling.ByteOutputStream
byteOutput -
Constructor Summary
ConstructorsConstructorDescriptionLimitedByteOutput(ByteOutput byteOutput, long limit) Construct a new instance. -
Method Summary
Methods inherited from class org.jboss.marshalling.ByteOutputStream
close, flush, writeMethods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
LimitedByteOutput
Construct a new instance.- Parameters:
byteOutput- the byte output to write tolimit- the byte limit
-
-
Method Details
-
write
Writes to the output stream the eight low-order bits of the argumentb. The 24 high-order bits ofbare ignored.- Specified by:
writein interfaceByteOutput- Overrides:
writein classByteOutputStream- Parameters:
b- the byte to write- Throws:
IOException- if an error occurs
-
write
Write some of the bytes from the given array to the stream.- Specified by:
writein interfaceByteOutput- Overrides:
writein classByteOutputStream- Parameters:
b- the byte arrayoff- the index to start writing fromlen- the number of bytes to write- Throws:
IOException- if an error occurs
-