Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RabbitMQ transport connection string options #4755

Draft
wants to merge 17 commits into
base: master
Choose a base branch
from

Conversation

TravisNickels
Copy link
Member

No description provided.

using global::RabbitMQ.Client;

class ConnectionFactory
{
readonly string endpointName;
readonly global::RabbitMQ.Client.ConnectionFactory connectionFactory;
readonly object lockObject = new object();
readonly SemaphoreSlim semaphoreSlim = new(1, 1);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to properly dispose the semaphore

Copy link
Member Author

@TravisNickels TravisNickels Jan 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the heads up. I'll take another look at this. I thought that the semaphoreSlim.Release() did the dispose, but maybe putting this in a using statement would be better so that the semaphoreSlim is always disposed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants