nng.NETCore
nng.NETCore copied to clipboard
IDE: JetBrains Rider installation: via NuGet; Subor.nng.NETCore 1.1.1.1 the installed version is old but the project importing seems fine: ```c# ``` however `using nng` not work with message: Cannot resolve...
My code: ``` var path = Path.GetDirectoryName(typeof(App).Assembly.Location); var ctx = new NngLoadContext(path); var factory = NngLoadContext.Init(ctx); ISubSocket socketSub = factory.SubscriberOpen().ThenDial(url).Unwrap(); ``` The ECONNREFUSED exception is raised if the publisher is...
When I create an IReqSocket:`_factory.RequesterOpen().ThenDial(_url).Unwrap()` And send a message with the `SendMsg()` function, the receiver IRepSocket immediately receives the message. But after some regular interval of time, the receiver keeps...
Should provide an additional API using NativeLibrary and C# 9.0 function pointers. Seems in would reduce native interop overhead by ~30% ([link](https://rendered-obsolete.github.io/2021/05/03/dotnet_calli.html)).
### WIP # 🚧 👷 🏗️ ... this is a work in progress but I want to create draft to provide an opportunity for discussion. ### Background This work stems...
https://github.com/dotnet/BenchmarkDotNet
`Take()` clears members but needs to protect against calling nng methods with null values
I'm not sure if it was changed recently in VS, it seems to me that i have used previous versions without such problems. But with VS 19.2 it tries to...
Examples
Hi guys, I am trying to repeat your Publisher/Subscriber example, but with the test examples is not enough to get how to properly do it. Then, could you provide any...