Creates a successful future. @param v the value that satisfies the future. @param the type of the value. @return the successful future.
(final T v)
| 166 | * @return the successful future. |
| 167 | */ |
| 168 | public static <T> Future<T> value(final T v) { |
| 169 | return new ValueFuture<>(v); |
| 170 | } |
| 171 |
no outgoing calls