All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcodec.movtool.streaming.tracks.ByteChannelPool Maven / Gradle / Ivy

The newest version!
package org.jcodec.movtool.streaming.tracks;
import java.lang.IllegalStateException;
import java.lang.System;


import org.jcodec.common.io.SeekableByteChannel;

import java.io.IOException;

/**
 * This class is part of JCodec ( www.jcodec.org ) This software is distributed
 * under FreeBSD License
 * 
 * A pool of open data channels used to read data
 * 
 * @author The JCodec project
 * 
 */
public interface ByteChannelPool {

    SeekableByteChannel getChannel() throws IOException;

    void close();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy