package com.limegroup.gnutella.io;

import java.nio.channels.ReadableByteChannel;

public interface InterestReadChannel extends ReadableByteChannel {

    /** 
     * Allows this ReadableByteChannel to be told that someone is no
     * longer interested in reading from it.
     */
    public void interest(boolean status);
    
}
