python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Masstransit and RabbitMQ to Console Application (use Asp.net Core Web API)
I created a Solution with ASP.NET Core WEB API project, some class libraries (Domain, DI and ect), and a console application.
A console application that I use as a RabbitMQ Consumer with Masstransit l...
Levan Amashukeli
Votes: 0
Answers: 1
Consume all messages in a System.Threading.Channels.Channel
Suppose I have a many producers, 1 consumer unbound Channel, with a consumer:
await foreach (var message in channel.Reader.ReadAllAsync(cts.Token))
{
await consume(message);
}
The problem is that...
Guiorgy
Votes: 0
Answers: 2
Best ways to design a kafka consumer
Need a help in getting the best design solution for creating Kafka consumers.
Will be having multiple topics and those can be like groups say for example
10 topics that are used to send out emails (10...

yaswanth kumar
Votes: 0
Answers: 1
Why my producer-consumer program in C not working properly?
I'm trying to synchronize 02 child processes that communicate using a buffer of size 5 using the semaphores "empty" and "full" only.
Process 01 executes producer() function and the...

Mounir
Votes: 0
Answers: 1