transferable.java

来自「一款Java实现的HTTP代理服务器」· Java 代码 · 共 35 行

JAVA
35
字号
package rabbit.proxy;import java.io.IOException;import java.nio.channels.WritableByteChannel;/** The methods needed for fast transferTo.  * * @author <a href="mailto:robo@khelekore.org">Robert Olofsson</a> */public interface Transferable {    /** Get the length of the resource in bytes.      * @return the size of the resource.     */    long length ();    /** Transfers bytes from this channel's file to the given      *  writable byte channel.     *     *  @see java.nio.channels.FileChannel#transferTo(long,long,     *                                                WritableByteChannel)      *       transferTo     *     * @param position The position within the file at which the transfer      *                 is to begin; must be non-negative     * @param count The maximum number of bytes to be transferred;      *              must be non-negative     * @param target The target channel     * @return The number of bytes, possibly zero, that were actually      *         transferred     */    long transferTo (long position, long count, WritableByteChannel target)	throws IOException;}

⌨️ 快捷键说明

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