A flexible ipc rust library supporting several protocols
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
trivernis 4f573f55c1
Add README, LICENSE and metadata for crates.io
Signed-off-by: trivernis <trivernis@protonmail.com>
3 years ago
src Update rustdoc 3 years ago
.gitignore Add most ipc stuff 3 years ago
Cargo.toml Add README, LICENSE and metadata for crates.io 3 years ago
LICENSE Add README, LICENSE and metadata for crates.io 3 years ago
README.md Add README, LICENSE and metadata for crates.io 3 years ago

README.md

rmp-ipc

Interprocess Communication via TCP using Rust Message Pack.

Usage

Client:

use rmp_ipc::IPCBuilder;
// create the client
let emitter = IPCBuilder::new()
    .address("127.0.0.1:2020")
    // register callback
    .on("ping", |_ctx, _event| Box::pin(async move {
        println!("Received ping event.");
        Ok(())
    }))
    .build_client().await.unwrap();

// emit an initial event
emitter.emit("ping", ()).await?;

Server:

use rmp_ipc::IPCBuilder;
// create the server
IPCBuilder::new()
    .address("127.0.0.1:2020")
    // register callback
    .on("ping", |_ctx, _event| Box::pin(async move {
        println!("Received ping event.");
        Ok(())
    }))
    .build_server().await.unwrap();

License

Apache-2.0