- reject() - Method in interface org.riversun.promise.Action
-
To make the Promise's status rejected and move on to the next processing(specified by then) with null reason
- reject() - Static method in class org.riversun.promise.Promise
-
Returns a Promise object that is rejected with null reason.
- reject() - Static method in class org.riversun.promise.SyncPromise
-
Returns a Promise object that is rejected with null reason.
- reject(Object) - Method in interface org.riversun.promise.Action
-
To make the Promise's status rejected and move on to the next processing(specified by then) with reason
- reject(Object) - Static method in class org.riversun.promise.Promise
-
Returns a Promise object that is rejected with a given reason.
- reject(Object) - Static method in class org.riversun.promise.SyncPromise
-
Returns a Promise object that is rejected with a given reason.
- REJECTED - org.riversun.promise.Status
-
- resolve() - Method in interface org.riversun.promise.Action
-
To make the Promise's status fulfilled and move on to the next processing(specified by then) with null result
- resolve() - Static method in class org.riversun.promise.Promise
-
Returns a Promise object that is resolved with null value
- resolve() - Static method in class org.riversun.promise.SyncPromise
-
Returns a Promise object that is resolved with null value
- resolve(Object) - Method in interface org.riversun.promise.Action
-
To make the Promise's status fulfilled and move on to the next processing(specified by then) with the result(fulfillment value).
- resolve(Object) - Static method in class org.riversun.promise.Promise
-
Returns a Promise object that is fulfilled with a given data
- resolve(Object) - Static method in class org.riversun.promise.SyncPromise
-
Returns a Promise object that is resolved with a given value
- resolve(Object, ExecutorService) - Static method in class org.riversun.promise.Promise
-
Returns a Promise object that is fulfilled with a given data and specify executor
- run(Action, Object) - Method in interface org.riversun.promise.Func
-
- runOnThread(Runnable) - Method in class org.riversun.promise.Promise
-