PeteGoo / Pushqa

An HTTP push messaging library with oData and Linq subscriptions for server side filtering of reactive events
MIT License
51 stars 10 forks source link

Implement Azure Service Bus Topics and Subscription support #4

Open PeteGoo opened 12 years ago

PeteGoo commented 12 years ago

Currently in ServiceBus branch.

The Sql92 implementation should be easy enough but a few questions outstanding about the best approach for managing subscriptions.

There is no cleanup of subscriptions so if each Rx subscription generates a new SB Subscription (e.g. with a Guid as the name), how to clean these up? How to know when there are no more subscribers? Possibly with a custom Subject type that will remove the subscription when no more subscribers are present.

Take and Skip would have to be implemented client side.