- Notifications
You must be signed in to change notification settings - Fork56
thehydroimpulse/nanomsg.rs
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Nanomsg is a modern messaging library that is the successor to ZeroMQ, written in C by Martin Sustrik and colleagues. The nanomsg library is licensed under MIT/X11 license. "nanomsg" is a trademark of 250bpm s.r.o.
- Nanomsg 1.1.4
Installing nanomsg:
make deps
[dependencies]nanomsg ="0.7.2"
Simply import the crate to use it:
use nanomsg;
The basis of Nanomsg is aSocket
. Each socket can be of a certain type. The type of a socket defines it's behaviour and limitations (such as only being able to send and not receive).
use nanomsg::{Socket,Protocol,Error};/// Creating a new `Pull` socket type. Pull sockets can only receive messages/// from a `Push` socket type.fncreate_socket() ->Result<(),Error>{letmut socket =Socket::new(Protocol::Pull)?;Ok(())}
Now, each socket that is created can be bound tomultiple endpoints. Each binding can return an error, sowe'll take advantage of the?
(try) operator.
use nanomsg::{Socket,Protocol,Error};/// Creating a new `Pull` socket type. Pull sockets can only receive messages/// from a `Push` socket type.fncreate_socket() ->Result<(),Error>{letmut socket =Socket::new(Protocol::Pull)?;// Create a new endpoint bound to the following protocol string. This returns// a new `Endpoint` that lives at-most the lifetime of the original socket.letmut endpoint = socket.bind("ipc:///tmp/pipeline.ipc")?;Ok(())}
The socket is ready to be used now!
Because this is aPull
socket, we'll implement reading any messages we receive.
// ... After the endpoint we created, we'll start reading some data.letmut msg =String::new();loop{ socket.read_to_string(&mut msg)?;println!("We got a message: {}",&*msg); msg.clear();}// ...
That's awesome! But... we have no packets being sent to the socket, so we'll read nothing. To fix this, let's implement the accompanying pairPush
socket.
use nanomsg::{Socket,Protocol,Error};fnpusher() ->Result<(),Error>{letmut socket =Socket::new(Protocol::Push)?;letmut endpoint = socket.connect("ipc:///tmp/pipeline.ipc")?; socket.write(b"message in a bottle"); endpoint.shutdown();Ok(())}
(In arbitrary order):
- Daniel Fagnan (@TheHydroImpulse)
- Jason E. Aten (@glycerine)
- David C. Bishop (@dcbishop)
- Dennis Lawler (@evenodder)
- Zachary Tong (@polyfractal)
- Dan Burkert (@danburkert)
- Benoît Labaere (@blabaere)
- Kevin Butler (@Ryman)
- Andrew (@GGist)
- Chip Collier (@photex)
- Zeke Foppa (@bfops)
- Philippe Delrieu (@musitdev)
- Daniel Kozlowski (@dkhenry)
- Vinzent Steinberg (@vks)
- Paul Woolcock (@pwoolcoc)
- Gabriel Martinez (@mystal)
- wdv4758h (@wdv4758h)
- Alexander Morozov (@alexandermorozov)
- Jan S (@jan-schreib)
- Thayne McCombs (@tmccombs)
- Anders Bennehag (@PureW)
- Peter Parkanyi (@rsdy)
- Jacek (@forgerpl)
- Gal Schlezinger (@Schniz)
- Gilad Naaman (@Gilnaa)
The MIT License (MIT)
- Copyright (c) 2013-2014 Jason E. Aten, Ph.D.@glycerine
- Copyright (c) 2014 Daniel Fagnan@thehydroimpulse
- Copyright (c) 2015-2018 Benoît Labaere@blabaere
Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INTHE SOFTWARE.
About
Nanomsg library for Rust
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.