Method
never
Returns a future that is never satisfied. @return the unsatisfied future. @param the type of the never satisfied future.
()
Source from the content-addressed store, hash-verified
| 120 | * @param <T> the type of the never satisfied future. |
| 121 | */ |
| 122 | public static <T> Future<T> never() { |
| 123 | return FutureConstants.NEVER.unsafeCast(); |
| 124 | } |
| 125 | |