Package com.naver.ads.deferred
Interface SuccessContinuation
-
- All Implemented Interfaces:
public interface SuccessContinuation<TResult extends Object, TContinuationResult extends Object>A function that is called to continue execution then a Deferred succeeds.
-
-
Method Summary
Modifier and Type Method Description abstract Deferred<TContinuationResult>then(TResult result)Returns the result of applying the SuccessContinuation to Deferred. -
-
Method Detail
-
then
abstract Deferred<TContinuationResult> then(TResult result)
Returns the result of applying the SuccessContinuation to Deferred.
- Parameters:
result- result of completed Deferred.
-
-
-
-