Promise of vapor

Promise¶

Most of the time, you will be transforming futures returned by calls to Vapor's APIs. However, at some point you may need to create a promise of your own.

To create a promise, you will need access to an EventLoop. All containers in Vapor have an eventLoop property that you can use. Most commonly, this will be the current Request.


/// Create a new promise for some string
let promiseString = req.eventLoop.newPromise(String.self)
print(promiseString) // Promise
print(promiseString.futureResult) // Future

/// Completes the associated future
promiseString.succeed(result: "Hello")

/// Fails the associated future
promiseString.fail(error: ...)

你可能感兴趣的:(Promise of vapor)