zeromq / netmq

A 100% native C# implementation of ZeroMQ for .NET
Other
2.95k stars 744 forks source link

NetMQBeacon.ReceiveReady is never fired #987

Open d79ima opened 3 years ago

d79ima commented 3 years ago

Environment

NetMQ Version: 4.0.1.6 Operating System: windows 10 x64 .NET Version: .net core 3.1

Expected behaviour

expecting this event to fire

Actual behaviour

it is never fired

Steps to reproduce the behaviour

var beacon = new NetMQBeacon(); beacon.ReceiveReady += Beacon_ReceiveReady; // this event is never fired beacon.ConfigureAllInterfaces(beaconPort); beacon.Subscribe(string.Empty);