Mike Stemle

Results 109 comments of Mike Stemle

> These related issues have been around for over a year now, and surprisingly, the problems haven't been resolved. Let's not be rude; the maintainers don't owe us anything.

What would the Perl example look like, this? ``` perl $mq->confirm_select(1, sub { say "Successful ack!"; }); $mq->publish(...); ``` Something like that is the only thing which comes to mind...

Maybe: ``` perl $mq->confirm_select_init(1); $mq->publish(1, ...); $response = $mq->confirm_select_wait(1, $seconds_to_wait); say "I got a $response->{method} response, with a body of $response->{body}"; ``` I suppose I could see that as well,...

> Hi all! Would it be possible to Hacktoberfest tag this issue? Alas, I don't know C, but I think publisher confirms in Perl would be quite useful for some...

I’m trying to figure out the best path forward on that with the maintainer of the C lib. I’m not sure how to implement such a thing. ~ Michael D....

Publisher confirms are being planned for later, but there's a lot of cleanup needed still. This issue is still deferred.

Update for y'all: I have a PR for `rabbitmq-c` which adds some support for waiting for publisher confirms: https://github.com/alanxz/rabbitmq-c/pull/841 One way or another, publisher confirms are _coming soon_.

Ok, that PR was merged, so I'm now starting work on this.

> Might be a good idea to add a basic_qos() example in the pod though. It makes a world of difference it seems. I added that example to #233. @minusdavid,...