pubsub icon indicating copy to clipboard operation
pubsub copied to clipboard

An extremely light-weight, easy to use PCL pub/sub library

Results 15 pubsub issues
Sort by recently updated
recently updated
newest added

Extended IPublisher and ISubscriber interfaces and their implementations to expose all Hub functionality.

Because your example for subscribing passes _this_ then I recommend changing the unsubscribe documentation to match, i.e. from ``` public class Page { Hub hub = Hub.Default; public void WereDoneHere()...

As far as I can see both Publish and PublishAsync use sequential execution. Is there any way to make it run in parallel?

Hi, I am using a static pipelinefactory in a dotnet core webapi. .Exists and Unsubscribe dont seem to be working at all. Everytime i check and unsubscibe in the constructor...

I'm expecting events behavior from PubSub, i.e. if I publish an event, somebody will catch it eventually (or not) and do what needs to be done. I was really surprised...

Hi, Thanks for the library. I do have a pending changes for additional feature to publish message in parallel (this increased throughput for us) and also I added async dispatch...

I love the initiative of having a lightweight, simple pubsub library. However, I would only use if it saves me from testing the whole publishing feature in my application. If...

I have a piece of code that takes an "event" and stores that event to CosmosDb. I've verified that there is only a Singleton instance of my EventManagementService (constructor only...

I want to filter some messages to specifik subscribers. This had to be done manually before. Now it's possible to do with a simple messenger token. example in PubSubWithToken()