@ConsumerType
public interface Failure
A Failure callback is registered with a Promise using the Promise.then(Success, Failure) method and is called if the Promise is resolved with a failure.
This is a functional interface and can be used as the assignment target for a lambda expression or method reference.
void fail(Promise<?> resolved) throws Exception
This method is called if the Promise with which it is registered resolves with a failure.
In the remainder of this description we will refer to the Promise returned by Promise.then(Success, Failure) when this Failure callback was registered as the chained Promise.
If this method completes normally, the chained Promise will be failed with the same exception which failed the resolved Promise. If this method throws an exception, the chained Promise will be failed with the thrown exception.
resolved - The failed resolved Promise.Exception - The chained Promise will be failed with the thrown exception.Copyright © 2009-2015 The Apache Software Foundation. All Rights Reserved.