EthanLozano

Results 5 comments of EthanLozano

In case anyone else runs into the same problem, I came up with a workaround. First, I have an endpoint that receives the information I need and then the server...

I read the [swift plugins announcement](https://blog.gradle.org/introducing-the-swift-plugins), cloned the [native-samples repo](https://github.com/gradle/native-samples), built the ios-application sample project, and I'm excited for the progress. I am really looking forward to running an iOS...

@masarusanjp solution worked for me with the slight annoyance that AWSAuthUIViewController [presents itself with an animation](https://github.com/aws/aws-sdk-ios/blob/2.6.23/AWSAuthSDK/Sources/AWSAuthUI/AWSAuthUIViewController.m#L44) and [dismisses itself with an animation](https://github.com/aws/aws-sdk-ios/blob/2.6.23/AWSAuthSDK/Sources/AWSUserPoolsSignIn/AWSUserPoolsUIOperations.m#L100). So, there is a brief black background when...

This is untested, but maybe something like this: public static T await(Promise promise) { CountDownLatch latch = new CountDownLatch(1); AtomicReference returnResult = new AtomicReference(); AtomicReference returnError = new AtomicReference(); promise...

I don't think so. The goal is to turn async code into synchronous code with as little extra code as possible. For example (from Google Promises): ``` Promise { let...