Crate ockam_transport_websocket
source ·Expand description
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.
use ockam_core::{Worker, Result, Routed, async_trait};
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 ockam_transport_websocket::WebSocketTransport;
use ockam_node::NodeBuilder;
use ockam_macros::node;
#[ockam_macros::node(crate = "ockam_node")]
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.
use ockam_transport_websocket::{WebSocketTransport, WS};
use ockam_core::{route, Result};
use ockam_node::Context;
use ockam_macros::node;
#[ockam_macros::node(crate = "ockam_node")]
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
}
Structs
- High level management interface for WebSocket transports.
Constants
- WebSocket address type constant.
Traits
- This trait adds a
create_web_socket_transport
method to any struct returning a Context. This is the case for an ockam::Node, so you can writenode.create_web_socket_transport()