RXPromise icon indicating copy to clipboard operation
RXPromise copied to clipboard

An Objective-C Class which implements the Promises/A+ specification.

Results 8 RXPromise issues
Sort by recently updated
recently updated
newest added

Hi, I am planning to move to RXPromise from PromiseKit because of the good support for cancellation. I was wondering if you could give me any recommendations for how to...

When I add RXPromise using Carthage to my project, and I have two build warnings. At my workplace we enable the "Treat Warnings as Errors" flag so the RXPromise module...

Hi! I haven't found a retry(count) operator... Could u append it ? =) I think it is widely used in network requests.

This implements progress reporting

I receive this crash report: EXC_BAD_ACCESS KERN_PROTECTION_FAILURE 0x000000016e24ffb0 Thread : Crashed: RXPromise.shared_sync_queue 0 libsystem_malloc.dylib 0x19a6c9f4c tiny_free_list_remove_ptr + 86 1 libsystem_malloc.dylib 0x19a6c8adc szone_free_definite_size + 1128 2 libdispatch.dylib 0x19a552028 _dispatch_queue_dispose + 28...

Hi @couchdeveloper, This is a small pull request that makes it so that `repeat:` behaves slightly differently (and more consistently with `then` say). Instead of terminating on `nil` and returning...

I understand this is objective-c land, but as promises in JavaScript are now part of a formal standard, is there interest in aligning this project with those semantics? One very...

question

`promise.catch` When the catch method is called with argument onRejected the following steps are taken: 1. Let promise be the this value. 2. Return Invoke(promise, `"then"`, (undefined, onRejected)). `promise.finally` not...

enhancement