Interface BytesDestination

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default byte[] receiveAllBytes()
      Reads (receives) the all currently available data.
      byte receiveByte()
      Reads (receives) the next byte, in case none byte is available, then this method blocks until one is available.
      default void receiveBytes​(byte[] aBuffer, int aOffset, int aLength)
      Receives a byte array with the number of bytes specified inserted at the given offset.
      default byte[] receiveBytes​(int aMaxLength)
      Similar to receiveAllBytes() though at maximum the amount of data as of the provided length returned.
    • Method Detail

      • receiveByte

        byte receiveByte()
                  throws IOException,
                         EOFException
        Reads (receives) the next byte, in case none byte is available, then this method blocks until one is available.
        Specified by:
        receiveByte in interface ByteDestination
        Returns:
        The next byte available .
        Throws:
        IOException - Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
        EOFException - Signals that an end of file or end of stream has been reached unexpectedly during input.
      • receiveAllBytes

        default byte[] receiveAllBytes()
                                throws IOException,
                                       EOFException
        Reads (receives) the all currently available data.
        Returns:
        The according data.
        Throws:
        IOException - Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
        EOFException - Signals that an end of file or end of stream has been reached unexpectedly during input.
      • receiveBytes

        default byte[] receiveBytes​(int aMaxLength)
                             throws IOException,
                                    EOFException
        Similar to receiveAllBytes() though at maximum the amount of data as of the provided length returned.
        Parameters:
        aMaxLength - The block-size which is not to exceeded by the returned data. A value of -1 specifies to retrieve all available datagrams (same behavior as method receiveAllBytes().
        Returns:
        The according data.
        Throws:
        IOException - Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
        EOFException - Signals that an end of file or end of stream has been reached unexpectedly during input.
      • receiveBytes

        default void receiveBytes​(byte[] aBuffer,
                                  int aOffset,
                                  int aLength)
                           throws IOException,
                                  EOFException
        Receives a byte array with the number of bytes specified inserted at the given offset. This method blocks till a byte is available.
        Parameters:
        aBuffer - The byte array where to store the bytes at.
        aOffset - The offset where to start storing the received bytes.
        aLength - The number of bytes to receive.
        Throws:
        IOException - thrown in case of I/O issues (e.g. a timeout) while receiving.
        EOFException - Signals that an end of file or end of stream has been reached unexpectedly during input.