FutureResultExtensions<T> extension

Extension methods for async Result operations.

on

Methods

mapAsync<R>(R transform(T)) Future<Result<R>>

Available on Future<Result<T>>, provided by the FutureResultExtensions extension

Maps the success value asynchronously.
thenFlatMap<R>(Future<Result<R>> transform(T)) Future<Result<R>>

Available on Future<Result<T>>, provided by the FutureResultExtensions extension

Flat maps the success value asynchronously.