Interface Skippable

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      int available()
      long skip​(long n)
      default void skipAvailable()
      Clears the read buffer from all available bytes as of available() at the time of this call.
      default void skipAvailableExcept​(int aLength)
      Skips all currently available bytes except the number of bytes specified.
      default void skipAvailableTill​(long aSkipTimeSpanInMs)
      Skips all available bytes till the given time span elapsed.
      default void skipAvailableTillSilenceFor​(long aSilenceTimeSpanInMs)
      Skips all available bytes till a given time span of silence is detected: The number of bytes available must be 0 for the given time span for this operation to conclude.
      default void skipAvailableTillSilenceFor​(long aSilenceTimeSpanInMs, long aTimeoutInMs)
      Skips all available bytes till a given time span of silence is detected: The number of bytes available must be 0 for the given time span for this operation to conclude.
      default void skipAvailableWithin​(long aSkipTimeSpanInMs)
      Skips all available bytes till after the given time no more bytes are available, else skipping is repeated till no more bytes are available within the given time span.This method blocks until the according available bytes have been skipped.
      default void skipAvailableWithin​(long aSkipTimeSpanInMs, long aTimeoutInMs)
      Skips all available bytes till after the given time no more bytes are available, else skipping is repeated till no more bytes are available within the given time span.
    • Method Detail

      • skipAvailable

        default void skipAvailable()
                            throws IOException
        Clears the read buffer from all available bytes as of available() at the time of this call. The bytes available are determined at the beginning of the skip process to prevent ongoing skipping of bytes on very slow machines and whilst receiving at very fast transfer rates (hypothetical).
        Throws:
        IOException - thrown in case of I/O issues.
      • skipAvailableWithin

        default void skipAvailableWithin​(long aSkipTimeSpanInMs)
                                  throws IOException
        Skips all available bytes till after the given time no more bytes are available, else skipping is repeated till no more bytes are available within the given time span.This method blocks until the according available bytes have been skipped. ATTENTION: To apply a custom timeout, please use skipAvailableWithin(long, long).
        Parameters:
        aSkipTimeSpanInMs - the skip time span in ms
        Throws:
        IOException - thrown in case of I/O issues.
      • skipAvailableWithin

        default void skipAvailableWithin​(long aSkipTimeSpanInMs,
                                         long aTimeoutInMs)
                                  throws IOException
        Skips all available bytes till after the given time no more bytes are available, else skipping is repeated till no more bytes are available within the given time span.
        Parameters:
        aSkipTimeSpanInMs - the skip time span in ms
        aTimeoutInMs - the timeout in ms
        Throws:
        IOException - thrown in case of I/O issues.
      • skipAvailableTill

        default void skipAvailableTill​(long aSkipTimeSpanInMs)
                                throws IOException
        Skips all available bytes till the given time span elapsed.
        Parameters:
        aSkipTimeSpanInMs - the skip time span in ms
        Throws:
        IOException - thrown in case of I/O issues.
      • skipAvailableTillSilenceFor

        default void skipAvailableTillSilenceFor​(long aSilenceTimeSpanInMs)
                                          throws IOException
        Skips all available bytes till a given time span of silence is detected: The number of bytes available must be 0 for the given time span for this operation to conclude. This method blocks until the time span of silence has been reached. ATTENTION: To apply a custom timeout, please use skipAvailableTillSilenceFor(long, long).
        Parameters:
        aSilenceTimeSpanInMs - The time span in milliseconds of silence (0 bytes available) till skipping is terminated.
        Throws:
        IOException - thrown in case of I/O issues.
      • skipAvailableTillSilenceFor

        default void skipAvailableTillSilenceFor​(long aSilenceTimeSpanInMs,
                                                 long aTimeoutInMs)
                                          throws IOException,
                                                 org.refcodes.exception.TimeoutIoException
        Skips all available bytes till a given time span of silence is detected: The number of bytes available must be 0 for the given time span for this operation to conclude. In case the read timeout is not -1 and the overall time while skipping bytes exceeds the read timeout a TimeoutIoException is thrown.
        Parameters:
        aSilenceTimeSpanInMs - The time span in milliseconds of silence (0 bytes available) till skipping is terminated.
        aTimeoutInMs - The time in milliseconds before this operation is terminated in case no period of silence as been detected before. With a value of -1 timeout handling is disabled (blocking mode).
        Throws:
        IOException - thrown in case of I/O issues.
        org.refcodes.exception.TimeoutIoException - in case the the read timeout is not -1 and the overall time while skipping bytes exceeds the read timeout .
      • skipAvailableExcept

        default void skipAvailableExcept​(int aLength)
                                  throws IOException
        Skips all currently available bytes except the number of bytes specified.
        Parameters:
        aLength - The number of bytes to leave in the InputStream.
        Throws:
        IOException - thrown in case of problems while skipping.