pushsourcestream.java

来自「FMJ(freedom media for java)是java视频开发的新选择」· Java 代码 · 共 21 行

JAVA
21
字号
package javax.media.protocol;import java.io.IOException;/** * Complete. * @author Ken Larson * */public interface PushSourceStream extends SourceStream{	/** According to API: Read from the stream without blocking. Returns -1 when the end of the media is reached. 	 * This implies that it can return zero if there is no data available. 	 */	public int read(byte[] buffer, int offset, int length) throws IOException;	public int getMinimumTransferSize();	public void setTransferHandler(SourceTransferHandler transferHandler);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?