Reputation: 1
I have two Silos Silo A and Silo B each having its own distinct grain and interface. I need to have them both communicate via streams. How possible is this? I am running locally for now and using SMS InMemory storage. within the same silo streaming works, how can this be achieved across silos
Upvotes: 0
Views: 348
Reputation: 1383
If you have grain a on silo A that wants to communicate via stream with grain a on silo B, just produce to a stream from a and subscribe to consume from b, and it will work.
Upvotes: 2