Replies: 1 comment 4 replies
-
Hi @joseftw, Thanks for your kind words. :) Setting ContainerId on the connection is not possible at the moment, but I can expose it as a part of Connection Factory API. How about sth like that: var connectionFactory = new ConnectionFactory();
connectionFactory.ContainerIdFactory = () => Guid.NewGuid().ToString();
var endpoint = Endpoint.Create("localhost", 5672, "guest", "guest");
var connection = await connectionFactory.CreateAsync(endpoint);
var consumer = await connection.CreateConsumerAsync(address: "foo", routingType: RoutingType.Multicast); |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
Thank you for an awesome lib!
I need to be able to set the ClientID when creating a Consumer, how do I do that?
Beta Was this translation helpful? Give feedback.
All reactions