Package org.jboss.marshalling
Class BytePipe
- java.lang.Object
-
- org.jboss.marshalling.BytePipe
-
public final class BytePipe extends Object
A pairedByteInput
andByteOutput
. Each end must be used from a different thread, otherwise a deadlock condition will occur.
-
-
Constructor Summary
Constructors Constructor Description BytePipe()
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteInput
getInput()
Get the input side of this pipe.ByteOutput
getOutput()
Get the output side of this pipe.
-
-
-
Method Detail
-
getInput
public ByteInput getInput()
Get the input side of this pipe.- Returns:
- the input side
-
getOutput
public ByteOutput getOutput()
Get the output side of this pipe.- Returns:
- the output side
-
-