AwaitKit icon indicating copy to clipboard operation
AwaitKit copied to clipboard

The ES8 Async/Await control flow for Swift

Results 18 AwaitKit issues
Sort by recently updated
recently updated
newest added

Hello! Maybe this is a stupid question but I haven't been able to solve it as of yet. I have something like ``` async { let report = try await(self.reportStore.getReport())...

My app have a `dispatchQ`(DispatchQueue) for network requests and most other operations, and some other queues for heavy computing. I use PromiseKit like this, ```swift fetchData().then { objects in let...

for PromiseKit usage: when(xxx, xxx).then { r1, r2 in .... } adding for AwaitKit? just like: let (r1, r2) = try await(xxx, xxx)

enhancement
help wanted

Hi! This library looks really great and I'm considering to include it into a new project. However I have a theory question I'd like to get an answer to before...

is there a way to mix an async {} block of code with UI actions that has promises? something like PMKAlertController. I have also developed other ViewControllers that waits for...

Hi, How could I pass an instruction which uses Elvis Operator? Example: try await(myObject?.myPromiseMethod()) Thanks.

I got a class which has a method encapsulating KingfisherManager.shared.retrieveImage. This method returns a Promise. It always worked well. However, after I have started to use AwaitKit KingfisherManager.shared.retrieveImage it stucks,...

Hi, new xCode 14 warning: > Thread running at QOS_CLASS_USER_INITIATED waiting on a lower QoS thread running at QOS_CLASS_DEFAULT. Investigate ways to avoid priority inversions