GithubHelp home page GithubHelp logo

amqp_channel_open and amqp_channel_close needs called in every operation, likes in amqp_exchange_declare, amqp_queue_declare and so on about rabbitmq-c HOT 3 CLOSED

kongxa avatar kongxa commented on August 24, 2024
amqp_channel_open and amqp_channel_close needs called in every operation, likes in amqp_exchange_declare, amqp_queue_declare and so on

from rabbitmq-c.

Comments (3)

alanxz avatar alanxz commented on August 24, 2024

Does amqp_channel_open and amqp_channel_close need called in every operation, likes in amqp_exchange_declare, amqp_queue_declare, amqp_queue_bind, amqp_queue_unbind, amqp_queue_delete,amqp_basic_publish,amqp_basic_consume?

amqp_exchange_declare (and friends) need an open channel, that channel may be reused between different calls, so there is no reason to close the channel after each call. A channel may be closed by the server if one of those calls fails. If the server indicates that the channel is closed, you'll need to open a new channel before calling any new functions that require a channel.

Does amqp_basic_publish have rpc reply from rabbitmq server? I am not find in example

By default amqp_basic_publish does not get an rpc-reply from the server. You can enable publisher confirms, in which the server will send a basic.ack method when back to the client after it has successfully processed a message. https://github.com/alanxz/rabbitmq-c/blob/master/examples/amqp_producer.c has a small example where publisher confirms are not enabled

If amqp_queue_bind return NULL,i find two proccess, below . Does amqp_get_rpc_reply realy get something from rabbitmq server when amqp_queue_bind returns NULL?

If amqp_queue_bind returns NULL, you will need to use amqp_get_rpc_reply to understand why it failed, this may be due to the server returning an error.

from rabbitmq-c.

kongxa avatar kongxa commented on August 24, 2024

Thank you very much.

By default amqp_basic_publish does not get an rpc-reply from the server. You can enable publisher confirms, in which the server will send a basic.ack method when back to the client after it has successfully processed a message. https://github.com/alanxz/rabbitmq-c/blob/master/examples/amqp_producer.c has a small example where publisher confirms are not enabled

If publisher confirms are not enabled, amqp_basic_publish does not get an rpc-reply from the server, amqp_get_rpc_reply was called anyway. Will the process be blocked by this call?

If amqp_queue_bind returns NULL, you will need to use amqp_get_rpc_reply to understand why it failed, this may be due to the server returning an error.

If amqp_queue_bind return success, do i need to call amqp_get_rpc_reply? I have known the result, but if i no need to call amqp_get_rpc_reply,will some rpc reply be left in rabbitmq client or connection?

from rabbitmq-c.

alanxz avatar alanxz commented on August 24, 2024

If amqp_queue_bind return success, do i need to call amqp_get_rpc_reply?

No, you only need to call it when amqp_queue_bind returns NULL.

from rabbitmq-c.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.