package com.limegroup.gnutella.util;

/**
 * Interface for operations that can be cancelled.
 */
public interface Cancellable {
    
    public boolean isCancelled();
    
}