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
In accordance with the implementation plan, we require the implementation of actorkit messaging communication using RabbitMQ pubsub infrastructure as the other queue and delivery mechanism system.
The idea is the use of the infrastructure not as in it's general pubsub nature but as a bridge which allows disparate actor system to easily and efficiently communicate with each other using a created custom Actor router which sits as the central communication link between the actor system and the infrastructure.
This is also a hard requirements for the development of the Grain Master Actors (See #1)
Design
The RabbitMQ PubSub Hashed Router
We will require the use of a hash router which will receive subscription messages from other actors about a giving event subject they have interests in, this will be hashed and use as the means of delivery to all interested actors.
This notion applies even when a actor system is only interested in all messages using the * subject.
The notion is to remove the need for individual actors with individual or shared infrastructure connection objects which will be communicated with.
The text was updated successfully, but these errors were encountered:
Very good. At Spawn we use a similar design based on Nats to allow clusters of actors to still communicate with each other in an architecture similar to the Cell Architecture
RabbitMQ PubSub Comm Bridge
In accordance with the implementation plan, we require the implementation of actorkit messaging communication using RabbitMQ pubsub infrastructure as the other queue and delivery mechanism system.
The idea is the use of the infrastructure not as in it's general pubsub nature but as a bridge which allows disparate actor system to easily and efficiently communicate with each other using a created custom Actor router which sits as the central communication link between the actor system and the infrastructure.
This is also a hard requirements for the development of the Grain Master Actors (See #1)
Design
The RabbitMQ PubSub Hashed Router
We will require the use of a hash router which will receive subscription messages from other actors about a giving event subject they have interests in, this will be hashed and use as the means of delivery to all interested actors.
This notion applies even when a actor system is only interested in all messages using the
*
subject.The notion is to remove the need for individual actors with individual or shared infrastructure connection objects which will be communicated with.
The text was updated successfully, but these errors were encountered: