2013-03-05 21:41:19 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2013 The Netty Project
|
|
|
|
*
|
|
|
|
* The Netty Project 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 io.netty.util.concurrent;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Special {@link Future} which is writable.
|
|
|
|
*/
|
2013-03-18 14:18:31 +01:00
|
|
|
public interface Promise<V> extends Future<V> {
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks this future as a success and notifies all
|
|
|
|
* listeners.
|
|
|
|
*
|
|
|
|
* If it is success or failed already it will throw an {@link IllegalStateException}.
|
|
|
|
*/
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> setSuccess(V result);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks this future as a success and notifies all
|
|
|
|
* listeners.
|
|
|
|
*
|
|
|
|
* @return {@code true} if and only if successfully marked this future as
|
|
|
|
* a success. Otherwise {@code false} because this future is
|
|
|
|
* already marked as either a success or a failure.
|
|
|
|
*/
|
2013-03-18 14:18:31 +01:00
|
|
|
boolean trySuccess(V result);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks this future as a failure and notifies all
|
|
|
|
* listeners.
|
|
|
|
*
|
|
|
|
* If it is success or failed already it will throw an {@link IllegalStateException}.
|
|
|
|
*/
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> setFailure(Throwable cause);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks this future as a failure and notifies all
|
|
|
|
* listeners.
|
|
|
|
*
|
|
|
|
* @return {@code true} if and only if successfully marked this future as
|
|
|
|
* a failure. Otherwise {@code false} because this future is
|
|
|
|
* already marked as either a success or a failure.
|
|
|
|
*/
|
|
|
|
boolean tryFailure(Throwable cause);
|
|
|
|
|
2013-06-11 10:46:21 +02:00
|
|
|
/**
|
|
|
|
* Make this future impossible to cancel.
|
|
|
|
*
|
|
|
|
* @return {@code true} if and only if successfully marked this future as uncancellable or it is already done
|
|
|
|
* without being cancelled. {@code false} if this future has been cancelled already.
|
|
|
|
*/
|
|
|
|
boolean setUncancellable();
|
|
|
|
|
2013-03-05 21:41:19 +01:00
|
|
|
@Override
|
2013-06-12 01:00:54 +02:00
|
|
|
Promise<V> addListener(GenericFutureListener<? extends Future<? super V>> listener);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-06-12 01:00:54 +02:00
|
|
|
Promise<V> addListeners(GenericFutureListener<? extends Future<? super V>>... listeners);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-06-12 01:00:54 +02:00
|
|
|
Promise<V> removeListener(GenericFutureListener<? extends Future<? super V>> listener);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-06-12 01:00:54 +02:00
|
|
|
Promise<V> removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners);
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> await() throws InterruptedException;
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> awaitUninterruptibly();
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> sync() throws InterruptedException;
|
2013-03-05 21:41:19 +01:00
|
|
|
|
|
|
|
@Override
|
2013-03-18 14:18:31 +01:00
|
|
|
Promise<V> syncUninterruptibly();
|
2013-03-05 21:41:19 +01:00
|
|
|
}
|