nanomsg-wrapper 0.5.2

Nanomsg wrappers for the D Programming Language.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

D Language wrapper and bindings for nanomsg

  • Ported to Dlang (2014,2015,2016,2017) by Laeeth Isharc. Caveat emptor.
  • Modified by Atila Neves

Simple example


// server:
auto pullSock = NanoSocket(NanoSocket.Protocol.pull, BindTo("tcp://*:12345"));
auto bytes = pullSock.receive();

// client:
auto pushSock = NanoSocket(NanoSocket.Protocol.push, ConnectTo("tcp://localhost:12345));
pushSock.send([0, 1, 3, 4, 5]);

Generated documentation Low Level Examples Docs Code

Authors:
  • Laeeth Isharc
  • Atila Neves
Dependencies:
concepts
System dependencies:
nanomsg: if you have a static build of nanomsg installed, you may need to link to some other libraries such as libanl (part of glibc). You may be able to find what is necessary by running `pkg-config nanomsg --libs --static`
Versions:
0.5.6 2023-Nov-07
0.5.5 2023-Aug-23
0.5.4 2023-Apr-04
0.5.3 2019-Apr-17
0.5.2 2019-Mar-20
Show all 26 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 117649 downloads total

Score:
1.6
Short URL:
nanomsg-wrapper.dub.pm