How to publish events to multiple receivers using ServiceStack -
i've been using servicestack communicate between systems , wondering if it's possible using servicestack in way events can published 0 n other can subscribe.
it should work in async/disonnected way if event published when subscriber temporarily down/unavailable event still delivered. can achieved using servicestack, , if so, what's best way?
servicestack supports notifying multiple subscribers server events supports both javascript or c#/.net clients.
another option implement pub/sub messaging use native pub/sub library support in redis.
but neither of these supports durable pub/sub, i.e. clients don't receive messages sent whilst they're not connected. mq support in rabbitmq , redismq support durable messaging they're not pub/sub, i.e they're 1:1 message queues.
Comments
Post a Comment