🎉 VideoCache 1.0 released

This commit is contained in:
Alexey Danilov
2015-04-01 14:24:35 +03:00
commit 70baa564c0
37 changed files with 2042 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.danikula.videocache;
/**
* Source for proxy.
*
* @author Alexey Danilov (danikula@gmail.com).
*/
public interface Source {
int available() throws ProxyCacheException;
void open(int offset) throws ProxyCacheException;
void close() throws ProxyCacheException;
int read(byte[] buffer) throws ProxyCacheException;
}