crates.io  TinyGo Version

wasmCloud Messaging Interface

This is the interface for the wasmcloud:messaging contract. This contract is a very simple abstraction over the concept of a message broker. This contract does not have controls or knobs or settings for things like delivery guarantees (e.g. "at most once" vs "at least once"), persistence of messages, etc. Such details are the responsibility of individual providers.

Capability Provider Implementations

The following is a list of implementations of the wasmcloud:messaging contract. Feel free to submit a PR adding your implementation if you have a community/open source version.

| Name | Vendor | Description | | :--- | :---: | :--- | | NATS | wasmCloud | wasmCloud Messaging Provider for the NATS broker

Example Usage

🦀 Rust

Implementing the Messaging.HandleMessage operation ```rust use wasmbusrpc::actor::prelude::*; use wasmcloudinterfacelogging::info; use wasmcloudinterface_messaging::{MessageSubscriber, MessageSubscriberReceiver, SubMessage};

[derive(Debug, Default, Actor, HealthResponder)]

[services(Actor, MessageSubscriber)]

struct LogMessagingActor {}

[async_trait]

impl MessageSubscriber for LogMessagingActor { /// Handle a message received on a subscription async fn handle_message(&self, _ctx: &Context, msg: &SubMessage) -> RpcResult<()> { info!("Received message: {:?}", msg); Ok(()) } } ```

Sending a message via a wasmcloud:messaging provider without expecting a reply rust use wasmbus_rpc::actor::prelude::*; use wasmcloud_interface_messaging::{Messaging, MessagingSender, PubMessage}; async fn publish_message(ctx: &Context, subject: &str, body: &[u8]) -> RpcResult<()> { let provider = MessagingSender::new(); if let Err(e) = provider .publish( ctx, &PubMessage { body: body.to_vec(), reply_to: None, subject: subject.to_owned(), }, ) .await { Err(format!("Could not publish message {}", e.to_string()).into()) } else { Ok(()) } }

Sending a message via a wasmcloud:messaging provider, waiting one second for a reply rust use wasmbus_rpc::actor::prelude::*; use wasmcloud_interface_messaging::{Messaging, MessagingSender, RequestMessage}; async fn message_request(ctx: &Context, subject: &str, body: &[u8]) -> RpcResult<()> { let provider = MessagingSender::new(); if let Err(e) = provider .request( ctx, &RequestMessage { body: body.to_vec(), subject: subject.to_owned(), timeout_ms: 1_000, }, ) .await { Err(format!("Could not request message {}", e.to_string()).into()) } else { Ok(()) } }

🐭 Golang

Implementing the Messaging.HandleMessage operation ```go import ( "github.com/wasmcloud/actor-tinygo" logging "github.com/wasmcloud/interfaces/logging/tinygo" messaging "github.com/wasmcloud/interfaces/messaging/tinygo" )

type Actor struct { logger *logging.LoggingSender }

func main() { me := Actor{ logger: logging.NewProviderLogging(), }

actor.RegisterHandlers(messaging.MessageSubscriberHandler(&me)) }

func (e *Actor) HandleMessage(ctx *actor.Context, msg messaging.SubMessage) error { return e.logger.WriteLog(ctx, logging.LogEntry{Level: "info", Text: string(msg.Body)}) } ```

Sending a message via a wasmcloud:messaging provider without expecting a reply ```go import ( "github.com/wasmcloud/actor-tinygo" messaging "github.com/wasmcloud/interfaces/messaging/tinygo" )

func PublishMessage(ctx *actor.Context, subj string, body []byte) error { client := messaging.NewProviderMessaging() return client.Publish(ctx, messaging.PubMessage{ Subject: subj, ReplyTo: "", Body: body, }) } ```

Sending a message via a wasmcloud:messaging provider, waiting one second for a reply ```go import ( "github.com/wasmcloud/actor-tinygo" logging "github.com/wasmcloud/interfaces/logging/tinygo" messaging "github.com/wasmcloud/interfaces/messaging/tinygo" )

var logger *logging.NewProviderLogging()

func MessageRequest(ctx *actor.Context, subj string, body []byte) error { client := messaging.NewProviderMessaging()

reply, _ := client.Request(ctx, messaging.RequestMessage{
   Subject:   subj,
   Body:      body,
   TimeoutMs: 1000,
})

return logger.WriteLog(ctx, logging.LogEntry{Level: "info", Text: "Response: " + string(reply.Body)})

} ```