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

org.xnio.FinishedIoFuture Maven / Gradle / Ivy

There is a newer version: 3.8.16.Final
Show newest version

package org.xnio;

/**
 * An implementation of {@link IoFuture} that represents an immediately-successful operation.
 *
 * @param  the type of result that this operation produces
 */
public class FinishedIoFuture extends AbstractIoFuture {
    /**
     * Create an instance.
     *
     * @param result the operation result
     */
    public FinishedIoFuture(T result) {
        setResult(result);
    }

    /**
     * Cancel the operation.  Since this operation is always complete, this is a no-op.
     *
     * @return this instance
     */
    public IoFuture cancel() {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy