All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xnio.Cancellable Maven / Gradle / Ivy

There is a newer version: 62
Show newest version

package org.xnio;

/**
 * An operation which may be cancelled.
 */
public interface Cancellable {

    /**
     * Cancel an operation.  The actual cancel may be synchronous or asynchronous.
     *
     * @return this instance
     */
    Cancellable cancel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy