RabbitMQ - AMQP

                    

Scenario: AMQP [Advanced messaging queueing protocol] on Rabbit.

Solution:

Below are the components of RabbitMQ. Ex could be a Post Office
  1. It uses RCP 2 way to client connation with broker.
  2. Rabbit MQ commands which is combination of Class and method [ConnectionStart].
  3. Frame has all data to communicate. Below are types of frames.
    1. Method
    2. Content
    3. Body
    4. Hierarchical
  4. Each frame constituters of bytes consisting of 
    1. Frame Type [Method]
    2. Channel
    3. Size [of message]
    4. Frame Specific content
      1. Class
      2. Method
    5. Frame End

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...