ceylon-local 0.1.2

Local mesh implementation for the Ceylon agent framework
Documentation

Ceylon Local

Local mesh implementation for the Ceylon agent framework.

Provides [LocalMesh] for managing agents in a single-process environment.

Example

use ceylon_local::LocalMesh;
use ceylon_core::Mesh;

# async fn example() -> anyhow::Result<()> {
let mesh = LocalMesh::new("my-mesh");
mesh.start().await?;
# Ok(())
# }