IOSSchedulers for RoboVM#1332
IOSSchedulers for RoboVM#1332benjchristensen merged 2 commits intoReactiveX:masterfrom ashleyj:master
Conversation
|
RxJava-pull-requests #1234 SUCCESS |
There was a problem hiding this comment.
Starting a scheduled thread pool for each direct-running task is wasteful, consider implementing the schedule(Action0) directly and not by forwarding it to the timed overload.
There was a problem hiding this comment.
Also, you may want to check if isUnsubscribed() at this point eagerly to prevent scheduling on a terminated worker.
There was a problem hiding this comment.
Unfortunately, GenericScheduledExecutorService is package private but you need the same structure and single static instance.
Added single static instance of ExecutorService for delayed posting Introduced ScheduledIOSAction to enable CompositeSubscription
|
RxJava-pull-requests #1270 SUCCESS |
|
RxJava-pull-requests #1271 SUCCESS |
|
RxJava-pull-requests #1272 SUCCESS |
|
Thanks ... I'll get to this in the near future. |
IOSSchedulers for RoboVM
Added support for IOSchedulers for RoboVM
I haven't added unit tests as
It sucks, I know and I'm working on a way to automate this.
Apologies for the double PR -- had to rebranch