Class BaseMediaChunkIterator

    • Constructor Detail

      • BaseMediaChunkIterator

        public BaseMediaChunkIterator​(long fromIndex,
                                      long toIndex)
        Deprecated.
        Creates base iterator.
        Parameters:
        fromIndex - The first available index.
        toIndex - The last available index.
    • Method Detail

      • isEnded

        public boolean isEnded()
        Deprecated.
        Description copied from interface: MediaChunkIterator
        Returns whether the iteration has reached the end of the available data.
        Specified by:
        isEnded in interface MediaChunkIterator
      • next

        public boolean next()
        Deprecated.
        Description copied from interface: MediaChunkIterator
        Moves the iterator to the next media chunk.

        Check the return value or MediaChunkIterator.isEnded() to determine whether the iterator reached the end of the available data.

        Specified by:
        next in interface MediaChunkIterator
        Returns:
        Whether the iterator points to a media chunk with available data.
      • checkInBounds

        protected final void checkInBounds()
        Deprecated.
        Verifies that the iterator points to a valid element.
        Throws:
        NoSuchElementException - If the iterator does not point to a valid element.
      • getCurrentIndex

        protected final long getCurrentIndex()
        Deprecated.
        Returns the current index this iterator is pointing to.