Enum svc_agent::Destination[][src]

pub enum Destination {
    Broadcast(String),
    Multicast(AccountIdString),
    Unicast(AgentIdString),
}
Expand description

Message destination.

This is an abstraction over MQTT topic pattern to determine outgoing message’s publish topic.

Understanding message routing is the key thing to use svc-agent. Make sure that you understand the patterns below and their counterparts described in Source.

MQTT topic variables:

  • MY_ACCOUNT_IDAccountId of the current agent that sends the message.
  • MY_VER – API version string of the current agent. For example: v1.
  • MY_BROADCAST_URI– current agent’s API specific path to some resource divided by /. For example: /rooms/ROOM_ID/events. If you will want to change its structure in the future you must also bump VER(ME).
  • ACCOUNT_ID – destination AccountId (no specific agent).
  • AGENT_ID – destination AgentId.
  • VER – destination agent version.

Variants

Broadcast(String)

Publish a message to each of the topic subscribers.

Typically being used for publishing notification events from a service.

The string supplied is MY_BROADCAST_URI.

Patterns

TypePatternMQTT topic
eventapp-to-anyapps/MY_ACCOUNT_ID/api/MY_VER/MY_BROADCAST_URI

Tuple Fields of Broadcast

0: String
Multicast(AccountIdString)

Publish a message to any single of SharedGroup agents.

Typically being used for sending requests to services which may have multiple instances.

AccountId is being supplied since we don’t care which specific instance will process the message.

Patterns

TypePatternMQTT topic
requestone-to_appagents/MY_AGENT_ID/api/MY_VER/out/ACCOUNT_ID

Tuple Fields of Multicast

0: AccountId1: String
Unicast(AgentIdString)

Publish a message to the specific instance with known AGENT_ID.

Typically being used for responding to requests. Also used for making a request to a specific instance of a stateful service.

Values supplied are AGENT_ID and VER.

Patterns

TypePatternMQTT topic
requestone-to-oneagents/AGENT_ID/api/VER/in/MY_ACCOUNT_ID
responseone-to_oneagents/AGENT_ID/api/VER/in/MY_ACCOUNT_ID

Tuple Fields of Unicast

0: AgentId1: String

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.