Creates a new SettableFuture that can be completed or cancelled by a later method call.
()
| 42 | |
| 43 | |
| 44 | public static <V> SettableFuture<V> create() { |
| 45 | return new SettableFuture<V>(); |
| 46 | } |
| 47 | |
| 48 | @CanIgnoreReturnValue |
| 49 | @Override |
no outgoing calls
no test coverage detected