Bob Godwin
Bob Godwin
@twittemb That's `Rx` 😂 I love it. Thanks for the contribution.
@frboulais Thanks for the update. - [ ] Can you please remove `d66f5c3` and `02b1a26` from the history. That would be nice 😎
Use `git rebase -- interactive eaf6866` and then add a `d` in the front of `d66f5c3` and `02b1a26` then press esc and then `:wq` to save. That should do the...
- `enabled` to `isEnabled` makes sense, but we add `enabled` as deprecated to start with and later remove it totally - `executing` to `isExecuting` same applies as above. - `_enabledIf`...
@freak4pc valid point there. Maybe for now we leave that aspect and handle it later on. Because of the `Non-terminating inputs` I've thought of using `ReplaySubject` or `BehaviorSubject` but it...
ok guys let's agree on one thing here. We don't know how people are using `Action` in their daily work and removing `InputSubject` might cause some anger. So my advice...
@SylvanasX why is static library needed?
@dangthaison91 exactly, the idea is to separate the errors related to the `output` from the `executionErrors` this will make sure that on `.errors` we will be getting only `Swift.Error`. Do...
Good point here I would go with something like this `MainScheduler.ensureExecutingOnScheduler()` and then throw a fatalError if not.
`MainScheduler.ensureExecutingOnScheduler() ` is widely used mainly to make sure that subsequent lines of code that follows will be executed on the `main queue` for example `Drivers` are executed on the...