#zeromq #nng #nanomsg #async-io

runng

High-level wrapper around nng (Nanomsg-Next-Generation) aka Nanomsg2

13 releases

0.3.2 Jan 14, 2020
0.3.1 Jan 11, 2020
0.2.0 Oct 19, 2019
0.1.11 Jan 29, 2019
0.1.1 Oct 12, 2018

#2 in #nanomsg

Download history 2/week @ 2024-01-10 11/week @ 2024-01-17 60/week @ 2024-01-24 191/week @ 2024-01-31 7/week @ 2024-02-07 33/week @ 2024-02-14 229/week @ 2024-02-21 44/week @ 2024-02-28 69/week @ 2024-03-06 24/week @ 2024-03-13 19/week @ 2024-03-20

159 downloads per month
Used in runng_thrift

MIT license

130KB
3K SLoC

Rust high-level wrapper around NNG (Nanomsg-Next-Gen):

NNG, like its predecessors nanomsg (and to some extent ZeroMQ), is a lightweight, broker-less library, offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery. The API frees the programmer from worrying about details like connection management, retries, and other common considerations, so that they can focus on the application instead of the plumbing.

Features:

Examples

Simple:

use runng::{
    Dial, Listen, RecvMsg, SendMsg,
    factory::latest::ProtocolFactory, 
    msg::NngMsg,
    protocol::*,
};
fn simple_reqrep() -> Result<(), runng::Error> {
    const url: &str = "inproc://test";

    let factory = ProtocolFactory::default();
    let rep = factory.replier_open()?.listen(&url)?;
    let req = factory.requester_open()?.dial(&url)?;
    req.sendmsg(NngMsg::create()?)?;
    rep.recv()?;

    Ok(())
}

Asynchronous I/O:

use futures::{
    future::Future,
    stream::Stream,
};
use runng::{
    Dial, Listen,
    asyncio::*,
    factory::latest::ProtocolFactory,
    msg::NngMsg,
    protocol::*,
};

fn async_reqrep() -> Result<(), runng::Error> {
    const url: &str = "inproc://test";

    let factory = ProtocolFactory::default();
    let mut rep_ctx = factory.replier_open()?.listen(&url)?.create_async()?;

    let mut req_ctx = factory.requester_open()?.dial(&url)?.create_async()?;
    let req_future = req_ctx.send(NngMsg::create()?);
    let _request = rep_ctx.receive().wait()?;
    rep_ctx.reply(NngMsg::create()?).wait()??;
    req_future.wait().unwrap()?;

    Ok(())
}

Additional examples in tests/ folder and runng_examples.

Dependencies

~6.5MB
~151K SLoC