Lacking Interactions in Effect-React and Workarounds
Interactions I found that are lacking from effect-react and their workarounds:
- ability to trigger takes from a stream | can be done with
- ability to trigger a take for an unrelated stream | can be simulated with queue / sub-ref
- a Subject-like multi-cast primitive | can be simulated by staggeting construction of streams and passing them down as props
- ability to trigger takes from a stream | can be done with
useResultCallback- ability to trigger a take for an unrelated stream | can be simulated with queue / sub-ref
- a Subject-like multi-cast primitive | can be simulated by staggeting construction of streams and passing them down as props
