mirror of
https://github.com/corda/corda.git
synced 2025-04-30 07:50:05 +00:00
Fixed formatting issues in messaging.rst
This commit is contained in:
parent
ed14c95d6f
commit
27462ff8f1
@ -47,26 +47,26 @@ Message queues
|
|||||||
The node makes use of various queues for its operation. The more important ones are described below. Others are used
|
The node makes use of various queues for its operation. The more important ones are described below. Others are used
|
||||||
for maintenance and other minor purposes.
|
for maintenance and other minor purposes.
|
||||||
|
|
||||||
:``p2p.inbound``
|
:``p2p.inbound``:
|
||||||
The node listens for messages sent from other peer nodes on this queue. Only clients who are authenticated to be
|
The node listens for messages sent from other peer nodes on this queue. Only clients who are authenticated to be
|
||||||
nodes on the same network are given permission to send. Messages which are routed internally are also sent to this
|
nodes on the same network are given permission to send. Messages which are routed internally are also sent to this
|
||||||
queue (e.g. two flows on the same node communicating with each other).
|
queue (e.g. two flows on the same node communicating with each other).
|
||||||
|
|
||||||
:``internal.peers.$identity``
|
:``internal.peers.$identity``:
|
||||||
These are a set of private queues only available to the node which it uses to route messages destined to other peers.
|
These are a set of private queues only available to the node which it uses to route messages destined to other peers.
|
||||||
The queue name ends in the base 58 encoding of the peer's identity key. There is at most one queue per peer. The broker
|
The queue name ends in the base 58 encoding of the peer's identity key. There is at most one queue per peer. The broker
|
||||||
creates a bridge from this queue to the peer's ``p2p.inbound`` queue, using the network map service to lookup the
|
creates a bridge from this queue to the peer's ``p2p.inbound`` queue, using the network map service to lookup the
|
||||||
peer's network address.
|
peer's network address.
|
||||||
|
|
||||||
:``internal.networkmap``
|
:``internal.networkmap``:
|
||||||
This is another private queue just for the node which functions in a similar manner to the ``p2p.peers.*`` queues
|
This is another private queue just for the node which functions in a similar manner to the ``p2p.peers.*`` queues
|
||||||
except this is used to form a connection to the network map node. The node running the network map service is treated
|
except this is used to form a connection to the network map node. The node running the network map service is treated
|
||||||
differently as it provides information about the rest of the network.
|
differently as it provides information about the rest of the network.
|
||||||
|
|
||||||
:``rpc.requests``
|
:``rpc.requests``:
|
||||||
RPC clients send their requests here, and it's only open for sending by clients authenticated as RPC users.
|
RPC clients send their requests here, and it's only open for sending by clients authenticated as RPC users.
|
||||||
|
|
||||||
:``clients.$user.rpc.$random``
|
:``clients.$user.rpc.$random``:
|
||||||
RPC clients are given permission to create a temporary queue incorporating their username (``$user``) and sole
|
RPC clients are given permission to create a temporary queue incorporating their username (``$user``) and sole
|
||||||
permission to receive messages from it. RPC requests are required to include a random number (``$random``) from
|
permission to receive messages from it. RPC requests are required to include a random number (``$random``) from
|
||||||
which the node is able to construct the queue the user is listening on and send the response to that. This mechanism
|
which the node is able to construct the queue the user is listening on and send the response to that. This mechanism
|
||||||
|
Loading…
x
Reference in New Issue
Block a user