Consume the future value in code as input. This method may or may not block the calling thread depending upon the implementation.
code
val future: Future<T> = // some api which returns a Future<T>val value: R = future.await() // blocks until future completes