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

org.apache.sshd.common.future.CancelFuture Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 34.0.0.Final
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.sshd.common.future;

import java.util.concurrent.CancellationException;

/**
 * Cancellations may not always be effective immediately. While a cancelled {@link Cancellable} future is considered
 * canceled immediately, it may take some time until the underlying asynchronous operation is really canceled. A
 * cancellation through {@link Cancellable#cancel()} returns a {@code CancelFuture} that can be used to wait for the
 * cancellation to have been effected.
 * 

* A {@code CancelFuture} is not cancellable itself. *

* * @author Apache MINA SSHD Project * @see Cancellable */ public interface CancelFuture extends SshFuture, VerifiableFuture { /** * Obtains an exception describing the stack trace of where the cancellation was initiated. * * @return a {@link CancellationException} */ CancellationException getBackTrace(); /** * Tells whether the cancellation has been effected. ({@link #isDone()} {@code && !isCanceled()}) means the * cancellation was not effected. In that case check the original operation for a success or failure value. * * @return {@code true} if the cancellation was done; {@code false} otherwise */ boolean isCanceled(); /** * Marks this {@link CancelFuture} as the cancellation having been effected. *

* This is a framework-internal method. *

*/ void setCanceled(); /** * Marks this {@link CancelFuture} as the cancellation having been effected. *

* This is a framework-internal method. *

* * @param error optional {@link Throwable}, if non-{@code null}, it'll be attached to the backtrace. */ void setCanceled(Throwable error); /** * Sets a {@link CancellationException} describing the stack trace of where the cancellation was initiated. Has no * effect if a backtrace was already set, or the given backtrace is {@code null}. *

* This is a framework-internal method. *

* * @param backTrace {@link CancellationException} to set */ void setBackTrace(CancellationException backTrace); /** * Completes this future with a value indicating that the cancellation was not done. */ void setNotCanceled(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy