Class BytePipe


  • public final class BytePipe
    extends java.lang.Object
    A paired ByteInput and ByteOutput. 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BytePipe

        public BytePipe()
        Construct a new instance.
    • 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