60 releases

0.21.0 Jun 22, 2023
0.19.5 Aug 1, 2022
0.19.4 Sep 29, 2021
0.17.0 Jun 15, 2021
0.3.1 Mar 5, 2019

#24 in #event-driven

Download history 48/week @ 2024-03-13 25/week @ 2024-03-20 168/week @ 2024-03-27 91/week @ 2024-04-03 6/week @ 2024-04-10 23/week @ 2024-04-17 14/week @ 2024-04-24 12/week @ 2024-05-01 11/week @ 2024-05-08 62/week @ 2024-05-15 66/week @ 2024-05-22 48/week @ 2024-05-29 684/week @ 2024-06-05 79/week @ 2024-06-12 41/week @ 2024-06-19 12/week @ 2024-06-26

818 downloads per month
Used in 4 crates

MIT license

150KB
3K SLoC

Agent

An agent library.

License

The source code is provided under the terms of the MIT license.


lib.rs:

Overview

svc-agent is a library implementing common MQTT agent messaging pattern conventions and abstracting out the protocol's specifics to enable building microservices with full-duplex communication.

On the broker side its counterpart is mqtt-gateway plugin for VerneMQ.

Key concepts

svc-agent is about exchanging messages between agents using pub-sub model.

An agent is a service or end user who can publish and subscribe to messages. Each agent has a unique AgentId.

Message can be of three types:

  1. Requests that end users send to services. Services may call other services too.
  2. Responses that services send back.
  3. Events that just may happen in services and it pushes a notification to subscribers.

Each outgoing message has a Destination and each incoming message has a Source which can also be of three types:

  1. Broadcast that is being received by each of the subscribed agents.
  2. Multicast that is being received by only one agent of a SharedGroup of subscribers.
  3. Unicast that is intended for a specific agent.

Dependencies

~13–28MB
~511K SLoC