public interface IThenable<T>
Modifier and Type | Interface and Description |
---|---|
static interface |
IThenable.ThenOnFulfilledCallbackFn<T,V> |
static interface |
IThenable.ThenOnRejectedCallbackFn<V> |
Modifier and Type | Method and Description |
---|---|
<V> IThenable<V> |
then(IThenable.ThenOnFulfilledCallbackFn<? super T,? extends V> onFulfilled) |
<V> IThenable<V> |
then(IThenable.ThenOnFulfilledCallbackFn<? super T,? extends V> onFulfilled,
IThenable.ThenOnRejectedCallbackFn<? extends V> onRejected) |
<V> IThenable<V> then(IThenable.ThenOnFulfilledCallbackFn<? super T,? extends V> onFulfilled)
<V> IThenable<V> then(IThenable.ThenOnFulfilledCallbackFn<? super T,? extends V> onFulfilled, IThenable.ThenOnRejectedCallbackFn<? extends V> onRejected)