AsyncIO icon indicating copy to clipboard operation
AsyncIO copied to clipboard

Results 14 AsyncIO issues
Sort by recently updated
recently updated
newest added

Consider the following code: var socket = new RequestSocket(); socket.Connect("tcp://localhost:32700") On Linux this works fine with Mono On Windows this works fine with .NET But on Windows this crashes with...

@somdoron is this expected? Below code throws excetion. static void Main(string[] args) { var s = AsyncSocket.Create(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); s.Bind(IPAddress.Parse("127.0.0.1"), 27000); var c = AsyncSocket.Create(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); c.Connect(IPAddress.Parse("127.0.0.1"), 27000); }...

I have been using AsyncIO to write TCP applications for quite sometime. However, I encountered weird behaviors when the workload went a bit heavy, about several thousands of concurrent connections...

Hi, i got to this point using netmq library, i'm using a SubscriberSocket to connect to a remote publisher, on a netcore 3.01 console application. I run the application with...

Hi, I am using Dealer-Broker pattern in NetMQ (4.0.0.1), ASyncIO(0.1.26.0) I can see some AccessViolationException in my UnHandledException logs, Not Sure where it is coming from. I am suspecting that...

I've been using NetMQ in production for a while. `NETMQ` version number is 4.0.0.1,`AsyncIO` version number is 0.1.26.0 Recently, i found the program had crashed. Checked out the windows log...

Downloaded AsyncIO source for 0.1.69.0 , built code produces 0.1.42.0. I have a requirement to have the source code for the libraries I use. I am upgrading to NetMQ to...

Hi Doron, It seems that the released version on nuget has no version set. This is then causing a compilation warning with NetMQ.

Hello, I get this intermittently when I'm trying to load test my communication component based on NetMQ 3.3.3.4, sending messages from thousands of router sockets on a single machine, connected...

This is confusing when performing runtime redirection...