Changes between Initial Version and Version 1 of wade/messageQueue/technicalTerminology


Ignore:
Timestamp:
Oct 17, 2008, 11:45:24 AM (16 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wade/messageQueue/technicalTerminology

    v1 v1  
     11. AMQP Model: A logical framework representing the key entities and semantics which must be made available
     2   by an AMQP compliant server implementation, such that the server can be meaningfully manipulated by AMQP
     3   Commands sent from a client in order to achieve the semantics defined in this specification.
     42. Connection: A network connection, e.g. a TCP/IP socket connection.
     53. Session: A named dialog between peers. Within the context of a Session, exactly-once delivery is guaranteed.
     64. Channel: An independent bidirectional stream within a multiplexed connection. The physical transport for a
     7   connected session.
     85. Client: The initiator of an AMQP connection or session. AMQP is not symmetrical. Clients produce and consume
     9   messages whereas servers queue and route messages.
     106. Server: The process that accepts client connections and implements the AMQP message queuing and routing
     11   functions. Also known as "broker"
     127. Peer: Either party in an AMQP dialog. An AMQP connection involves exactly two peers (one is the client, one
     13   is the server)
     148. Partner: The term Partner is used as a convenient shorthand for describing the "other" Peer when describing an
     15    interaction between two Peers. For example if we have defined Peer A and Peer B as opposite ends of a given
     16    interaction, then Peer B is Peer A's Partner and Peer A is Peer B's partner.
     179. Assembly: An ordered collection of Segments that form a logical unit of work.
     1810. Segment: An ordered collection of Frames that together form a complete syntactic sub-unit of an Assembly.
     1911. Frame: The atomic unit of transmission in AMQP. A Frame is an arbitrary fragment of a Segment.
     2012. Control: A formally defined one-way instruction assumed to be unreliably transported.
     2113. Command: A formally defined and identified instruction requiring acknowledgement. AMQP attempts to reliably
     22    transport Commands.
     2314. Exception: A formally defined error condition that may occur during execution of one or more commands.
     2415. Class: A collection of AMQP commands or controls that deal with a specific type of functionality.
     2516. Header: A specific type of Segment that describes properties of message data.
     2617. Body: A specific type of Segment that contains application data. Body segments are entirely opaque - the server
     27    does not examine or modify these in any way.
     2818. Content: The message data contained within a body segment.
     2919. Exchange: An entity within the server which receives messages from producer applications and routes these to
     30    message queues within the server.
     3120. Exchange Type: The classification of an exchange based on routing semantics.
     3221. Message Queue: A named entity that holds messages until they can be sent to consumer applications.
     3322. Binding: A relationship that defines routing between a Message Queue and an Exchange.
     3423. Binding Key: A name for a binding. Some exchange types may use this as a pattern that defines the routing behavior
     35    for the Binding.
     3624. Routing Key: A message header that an Exchange may use to decide how to route a specific message.
     3725. Durable: A server resource that survives a server restart.
     3826. Transient: A server resource that is wiped or reset after a server restart.
     3927. Persistent: A message that the server holds on reliable disk storage and MUST NOT lose after a server restart.
     4028. Non-Persistent: A message that the server holds in memory and MAY lose after a server restart.
     4129. Consumer: A client application that requests messages from a message queue.
     4230. Producer: A client application that publishes messages to an exchange.
     4331. Virtual Host: A collection of exchanges, message queues and associated objects. Virtual hosts are independent
     44    server domains that share a common authentication and encryption environment. The client application chooses
     45    a virtual host after logging in to the server.
     4631. Topic: Usually a means of distributing messages; AMQP implements topics using one or more types of exchange.
     4732. Service: Usually synonymous with server. The AMQP standard uses "server" to conform with IETF standard
     48   nomenclature and to clarify the roles of each party in the protocol (both sides may be AMQP services).
     4933. Broker: synonymous with server. The AMQP standard uses the terms "client" and "server" to conform with IETF
     50   standard nomenclature.