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
FieldsFields 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, write
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Field Details
-
limit
private final long limit -
count
private long count
-
-
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 ofb
are ignored.- Specified by:
write
in interfaceByteOutput
- Overrides:
write
in 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:
write
in interfaceByteOutput
- Overrides:
write
in classByteOutputStream
- Parameters:
b
- the byte arrayoff
- the index to start writing fromlen
- the number of bytes to write- Throws:
IOException
- if an error occurs
-