Skip to content

s-innovations/S-Innovations.Azure.MessageProcessor

Repository files navigation

S-Innovations Message Processor

I created this project with the boiler plate code I always use when doing a worker/web role for queue processing.

It factor out the queue provider such both the servicebus and storage queue can be pluged into the message processor.

Further more it supports processing for multiply message types in the queue where you just have to implement the IMessageHandler interface for the message you create. And it support Async Processors.

public interface IMessageHandler<MessageType>  where MessageType : BaseMessage
{
    Task HandleAsync(MessageType T);
}

About

Boiler plate code for doing a queue message handler with generic message types.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages