org.xnio.Cancellable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xnio-api Show documentation
Show all versions of xnio-api Show documentation
The API JAR of the XNIO project
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();
}