ockamtransportwebsocket

crate docs license discuss

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.

This crate provides a WebSocket Transport for Ockam's Routing Protocol.

This crate requires the rust standard library "std".

We need to define the behavior of the worker that will be processing incoming messages.

```rust use ockamcore::{Worker, Result, Routed, asynctrait}; use ockam_node::Context;

struct MyWorker;

[async_trait]

impl Worker for MyWorker { type Context = Context; type Message = String;

async fn handle_message(&mut self, _ctx: &mut Context, _msg: Routed<String>) -> Result<()> {
    // ...
    Ok(())
}

}

// Now we can write the main function that will run the previous worker. In this case, our worker will be listening for new connections on port 8000 until the process is manually killed.

use ockamtransportwebsocket::WebSocketTransport; use ockamnode::NodeBuilder; use ockammacros::node;

[ockammacros::node(crate = "ockamnode")]

async fn main(mut ctx: Context) -> Result<()> {//! let ws = WebSocketTransport::create(&ctx).await?; ws.listen("localhost:8000").await?; // Listen on port 8000

// Start a worker, of type MyWorker, at address "my_worker"
ctx.start_worker("my_worker", MyWorker).await?;

// Run worker indefinitely in the background
Ok(())

} ```

Finally, we can write another node that connects to the node that is hosting the MyWorker worker, and we are ready to send and receive messages between them.

```rust use ockamtransportwebsocket::{WebSocketTransport, WS}; use ockamcore::{route, Result}; use ockamnode::Context; use ockam_macros::node;

[ockammacros::node(crate = "ockamnode")]

async fn main(mut ctx: Context) -> Result<()> { use ockam_node::MessageReceiveOptions; let ws = WebSocketTransport::create(&ctx).await?;

// Define the route to the server's worker.
let r = route![(WS, "localhost:8000"), "my_worker"];

// Now you can send messages to the worker.
ctx.send(r, "Hello Ockam!".to_string()).await?;

// Or receive messages from the server.
let reply = ctx.receive::<String>().await?;

// Stop all workers, stop the node, cleanup and return.
ctx.stop().await

} ```

Usage

Add this to your Cargo.toml:

[dependencies] ockam_transport_websocket = "0.75.0"

License

This code is licensed under the terms of the Apache License 2.0.