Closed andrewtheis closed 6 years ago
Currently, LazyFuture is defined as:
public typealias LazyFuture<T> = () -> (Future<T>)
In order to support chaining various NIO/Async functions, it should support throwing:
public typealias LazyFuture<T> = () throws -> (Future<T>)
Currently, LazyFuture is defined as:
In order to support chaining various NIO/Async functions, it should support throwing: