python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
MassTransit unable to use IRequestClient - dependency injection issue
In the Startup.ConfigureServices I'm adding MassTransit configuration
services.AddMassTransit(config =>
{
config.SetKebabCaseEndpointNameFormatter();
config.AddRequestClient<Regist...
user1765862
Votes: 0
Answers: 1
Masstransit Consumer in .NET 4.8 Topshelf works only in Executable not in Service
we need to host a Masstransit RabbitMQ Consumer in a .NET 4.8 Windows Service.
We are using Dependency Injection and Topshelf to run, install and start the Service.
Running the Consumer as a Windows *...
Spoc
Votes: 0
Answers: 1
Masstransit Jobconsumer change queue names Job, JobAttempt and JobType
I am building a proof of concept with masstransit, rabbitmq and the jobconsumers. It is very nice and I am making progress. But there is one thing I cannot solve, that is changing the queue names of t...
Sjaak
Votes: 0
Answers: 1
Problem mocking MassTransit method for testing
I'm writing a test for a Consumer using masstransit.
var _context = new Mock<ConsumeContext<AcionaMessageCommand>>();
_context.Setup(x => x.GetRedeliveryCount()).Returns(1);
when ...
Nivaldo Frigo
Votes: 0
Answers: 0