How do I know if I am sending successfully after using BasicPublishAsync #1793
Closed
a645010545
started this conversation in
General
Replies: 3 comments
-
@a645010545 this should have been a discussion. See this example app that demonstrates how publisher confirms can be used. |
Beta Was this translation helpful? Give feedback.
0 replies
-
System.Threading. SemaphoreFullException: Adding the specified count to the semaphore would cause it to exceed its maximum count. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Is it because of this MAX_OUTSTANDING_CONFIRMS |
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
-
Is your feature request related to a problem? Please describe.
BasicPublishAsync
Describe the solution you'd like
var properties = new BasicProperties();
properties.DeliveryMode = DeliveryModes.Persistent;
await channel.BasicPublishAsync(exchange, string.Empty, true, properties, bytes);
How do I know if I am sending successfully after using BasicPublishAsync
Describe alternatives you've considered
No response
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions