package cn.wisenergy.chnmuseum.party.common.video;
import java.io.IOException;
public interface DataSink {
interface Factory {
DataSink createDataSink();
}
void open() throws IOException;
void write(byte[] buffer, int offset, int length) throws IOException;
void close() throws IOException;
}
-
liqin authored535fb75e