Reputation: 506
I've a very strange problem with AKKA FSM. I've a pool of fsm actor references created at the time of app initialization and the requirement is to send incoming streams of messages to all those actors references, so unfortunately some of the messages are not being sent properly.
Is there a mechanism to track the messages are delivered or not, Please let me know if anybody encountered/solved these.
Appreciate your help!
Thanks, ~Shiva
Upvotes: 0
Views: 187
Reputation: 35443
Checkout the FSM Documentation, specifically the section on Testing and Debugging Finite State Machines. In a nutshell, you need to:
LoggingFSM
akka.actor.debug.fsm
to true
DEBUG
, If you do all of that you should start seeing debug level messages related to events/state transitions/timers for your FSM actors.
Upvotes: 1