Skip to content

afnpires/Postal.NET

 
 

Repository files navigation

#Postal.NET

##Introduction Postal.NET is a .NET Standard library for writing decoupled applications. It is loosely based upon the Postal.js JavaScript library and follows the Domain Events and Pub/Sub patterns. It was written by Ricardo Peres (@rjperes75). As of version 1.1 it now targets .NET Standard 2.0.

##Concepts Postal.NET uses the concepts of channels and topics. We subscribe to a topic of a channel, and we send messages to other (or possibly the same) channels and topics. The "*" character means anything, so, for example, "a.b" and "a.*" or even "*" will match. There can be several simultaneous subscriptions, even to the same channel/topic pair. Postal.NET guarantees the delivery.

##Usage

//create a subscription to a single named channel and topic pair
using (Postal.Box.Subscribe("channel", "topic", (env) => Console.WriteLine(env.Data)))
{
    //publish synchronously (will block)
    Postal.Box.Publish("channel", "topic", "Hello, World!");

    //publish asynchronously (does not block)
    await Postal.Box.PublishAsync("channel", "topic", "Hello, Async World!");
}

//no consequences, since the subscription was terminated
Postal.Box.Publish("channel", "topic", "Does not appear because the subscription was disposed!");

A message can either be sent synchronously or asynchronously and if there are subscribers to it, it will raise an event (one or more subscriptions being triggered). Subscriptions do not prevent the garbage collection of the subscriber. Messages are always wrapped in an envelope. There are some handy extensions for common tasks:

  • Once: only handles an event once, then unsubcribes from it
  • MultiPublish: publishes a number of events at once
  • SubscribeMulti: subscribes to one or more channels, separated by commas, at a time
  • Subscribe<T>: subscribes to an event where its payload is of a given type

The public interface is decoupled from the actual implementation and it can be easily switched.

You can find more examples in the GitHub repository in the Postal.NET.Test project.

##Extensibility Most of the inner workings of Postal.NET can be configured by injection an implementation of the core interfaces:

  • IBox: The core contract for Postal.NET.
  • IChannel: An event channel.
  • IChannelTopicMatcher: How to match channels and topics.
  • IChannelTopicMatcherProvider: Injects a channel and topic matcher.
  • IPublisher:Basic contract for a message publisher.
  • ISubscriberStore:Actual implementation contract for Postal.NET.
  • ITopic: An event topic.

##Installation You can either:

##Other Projects

Other projects you can find in the GitHub repository and in Nuget are:

  • PostalConventions.NET: conventions for channels and topics (Nuget)
  • PostalCqrs.NET: CQRS extensions (Nuget)
  • PostalRequestResponse.NET: implementation of request-response pattern (Nuget)
  • PostalRX.NET: Reactive Extensions (RX.NET) adapter (Nuget)
  • PostalWhen.NET: composition of events (e.g., "do this when you receive this and that") (Nuget)
  • Postal.NET.Test: working examples

##Contacts If you see any value in this and wish to send me your comments, please do so through GitHub. Questions and suggestions are welcome too!

##Licenses This software is distributed under the terms of the Free Software Foundation Lesser GNU Public License (LGPL), version 2.1 (see lgpl.txt).

##Copyright You are free to use this as you wish, but I ask you to please send me a note about it.

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%