📄 pushsourcestream.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -