Giter VIP home page Giter VIP logo

masstransit-1's Introduction

Light Messaging Core Boilerplate with Saga

Lightweight core messaging library and boilerplate with RabbitMQ, MassTransit and SagaStateMachine

Link: -

Features:

  • Provides basic RabbitMQ BUS instance
  • Includes basic producer & consumer boilerplate
  • Includes basic model workflow, state machine and sagas

Manuel Usage:

Firstly you have to add these keys in your configuration file.

<appSettings>
	<add key="RabbitMQUri" value="rabbitmq://hostAddress/"/>
	<add key="RabbitMQUserName" value="username"/>
	<add key="RabbitMQPassword" value="password"/>
</appSettings>

Initializing RabbitMQ BUS instance for Producer:

IBusControl busControl = BusConfigurator.Instance.ConfigureBus();
var sendToUri = new Uri("rabbitmqUri/queueName");

ISendEndpoint bus = busControl.GetSendEndpoint(sendToUri).Result;

after RabbitMQ BUS instance initializing then you can use Send method with your queues channel TCommand type.

bus.Send<TCommand>(new
			{
				SomeProperty = SomeValue
			}
		);

RabbitMQ BUS instance using for Consumer:

static void Main(string[] args)
{
	var bus = BusConfigurator.Instance
		.ConfigureBus((cfg, host) =>
			{
				cfg.ReceiveEndpoint(host, "queueName", e =>
				{
					e.Consumer<TCommandConsumer>();
				});
			});

	bus.Start();

	Console.ReadLine();
}

TCommandConsumer could like below:

public class TCommandConsumer : IConsumer<TCommand>
{
    public async Task Consume(ConsumeContext<TCommand> context)
    {
        var command = context.Message;

		//do something...
        await Console.Out.WriteAsync($"{command.SomeProperty}");
    }
}

PS: Publisher and Consumer services must be used same TCommand interface. This case important for MassTransit integration.

There are several options you can set via fluent interface:

  • .UseRetryPolicy(IRetryPolicy retryPolicyement)
  • .UseCircuitBreaker(int tripThreshold, int activeThreshold, int resetInterval)
  • .UseRateLimiter(int rateLimit, int interval)

masstransit-1's People

Contributors

obulix avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.