You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we are using custom actor framework iroha_actor for some subsystems of iroha2 which is limited in certain ways.
Firstly it's impossible to express state transitions of actor without using enums which leads to matching all over the place.
Secondly current actor framework leads to spaghetti code.
Adoption of plain tokio actors will help us with this limitations and provide more versatility in terms of communication between actors.
The text was updated successfully, but these errors were encountered:
Currently we are using custom actor framework
iroha_actor
for some subsystems of iroha2 which is limited in certain ways.Firstly it's impossible to express state transitions of actor without using enums which leads to matching all over the place.
Secondly current actor framework leads to spaghetti code.
Adoption of plain tokio actors will help us with this limitations and provide more versatility in terms of communication between actors.
The text was updated successfully, but these errors were encountered: