Replies: 1 comment
-
you can disable message dropping in the options by changing the internal channel behaviour: await using var nats = new NatsConnection(new NatsOpts
{
SubPendingChannelFullMode = BoundedChannelFullMode.Wait,
}); There is also a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the code below that is a HostedService and if
Do Task
is taking time and I have a fast incoming message then message get dropped and or the NatsConnect gets drop. Is there a way to process every message. Maybe something to throttle the incoming message?Beta Was this translation helpful? Give feedback.
All reactions