-
Having considered porting a lot of code from saga to listeners, I've noticed that I am reaching for the same pattern which is a bit verbose in order to have deeply nested forking:
Example:
```js
…
-
Maybe take one from [redux-sagas](https://github.com/yelouafi/redux-saga/tree/master/examples), would help people choose between the two.
I do like the concept of a more "lightweight" alternative.
-
So how can we use the resolvers with a cqrs pattern, basically we need to use a command bus.
What would be the best approach to handle this use case.
-
dvajs is legacy, unmaintained, poorly documented and preventing us from moving to a more recent react version. It is likely that modern react components mean we don't need it.
We are using it for r…
-
(I earlier reported an issue about 1.3.1 of loosely coupled systems)
I noticed that section 1.3.2 (which talks about orchestration) and 1.3.3 (deployment) need attention.
Section 1.3.2, which s…
-
I am just trying Sage for the first time and therefore not sure if I am using it correctly.
When running a saga, its return value looks like: `{:ok, last_effect, effects}`. Wouldn't it make more se…
-
When submitting a job, the script just stalls after the `submit 1 pilot(s)` message. I haven't experienced this before, but now it happens every time. The same script worked before.
The logs: The `…
-
**Component**:
UI
**What happened**:
Nodes and volumes not refreshed automatically.
**What was expected**:
Nodes and volumes to be refreshed.
**Steps to reproduce**
1. Log into Me…
-
Still digging in here, but AFAIK, none of these examples include tests. In exploring various redux strategies one thing I noticed is most of the action creator patterns tend to hide application logic …
-
For reliable domain event emission synchronized with database transactions, the [transactional outbox pattern](https://microservices.io/patterns/data/transactional-outbox.html) is a common solution. I…