Ceylon Local
Local mesh implementation for the Ceylon agent framework.
Provides [LocalMesh] for managing agents in a single-process environment.
Example
use LocalMesh;
use Mesh;
# async
Local mesh implementation for the Ceylon agent framework.
Provides [LocalMesh] for managing agents in a single-process environment.
use ceylon_local::LocalMesh;
use ceylon_core::Mesh;
# async fn example() -> anyhow::Result<()> {
let mesh = LocalMesh::new("my-mesh");
mesh.start().await?;
# Ok(())
# }