#How to observe events coming from a callback actor?
1 messages · Page 1 of 1 (latest)
One solution I've figured out is throwing the actor into an ad-hoc machine which reenters a state each time it gets any event from the callback actor, then subscribing to that machine. But there must be a cleaner way to observe the events
Yes. In the state that invokes the callback actor, you can add an on: { someEvent: {} } and listen to the events sent back there.
Awesome, thanks Kevin. I'm happy as long as I know I'm not missing something.
You should be able to use the inspect API to see these events