基本信息
源码名称:zeromq C# 接口实现
源码大小:0.16M
文件格式:.zip
开发语言:C#
更新时间:2023-06-07
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
zeromq C# 接口实现
zeromq 比较经典的消息队列 小巧 轻量级 C#接口api 操控简单
文件清单
└── clrzmq-master
├── AUTHORS
├── build.cmd
├── build-with-custom-libzmq.cmd
├── lib
│ ├── x64
│ │ └── what_to_put_here.txt
│ └── x86
│ └── what_to_put_here.txt
├── LICENSE
├── Makefile
├── nuget.sh
├── package.cmd
├── README.md
└── src
├── build.proj
├── clrzmq.5.1.ReSharper
├── clrzmq.6.1.ReSharper
├── clrzmq.Mono.sln
├── clrzmq.sln
├── clrzmq.sln.DotSettings
├── CustomTasks.targets
├── Indentation.vssettings
├── nuget.config
├── Projects.StyleCop
├── Settings.FxCop
├── Shared
│ ├── ProductInfo.cs
│ └── VersionInfo.cs
├── SolutionEvents_Opened.macro
├── ZeroMQ
│ ├── ContextOption.cs
│ ├── Devices
│ │ ├── Device.cs
│ │ ├── DeviceMode.cs
│ │ ├── DeviceRunner.cs
│ │ ├── DeviceSocketSetup.cs
│ │ ├── ForwarderDevice.cs
│ │ ├── IDevice.cs
│ │ ├── QueueDevice.cs
│ │ ├── StreamerDevice.cs
│ │ ├── ThreadedDeviceRunner.cs
│ │ └── ZmqDeviceException.cs
│ ├── DuplexSocket.cs
│ ├── ErrorCode.cs
│ ├── ExecuteExtensions.cs
│ ├── Frame.cs
│ ├── Interop
│ │ ├── ContextProxy.cs
│ │ ├── DisposableIntPtr.cs
│ │ ├── ErrorDetails.cs
│ │ ├── ErrorProxy.cs
│ │ ├── LibZmq.Mono.cs
│ │ ├── LibZmq.NET.cs
│ │ ├── ManifestResource.cs
│ │ ├── MonitorEventData.cs
│ │ ├── Platform.Mono.cs
│ │ ├── Platform.NET.cs
│ │ ├── Platform.Unix.cs
│ │ ├── Platform.Windows.cs
│ │ ├── PollerProxy.cs
│ │ ├── PollEvents.cs
│ │ ├── PollItem.cs
│ │ ├── Retry.cs
│ │ ├── SafeLibraryHandle.cs
│ │ ├── SocketProxy.cs
│ │ ├── Tracer.cs
│ │ ├── UnmanagedLibrary.cs
│ │ └── ZmqMsgT.cs
│ ├── Monitoring
│ │ ├── MonitorContextExtensions.cs
│ │ ├── MonitorEvents.cs
│ │ ├── MonitorSocketExtensions.cs
│ │ ├── ZmqMonitor.cs
│ │ ├── ZmqMonitorErrorEventArgs.cs
│ │ ├── ZmqMonitorEventArgs.cs
│ │ ├── ZmqMonitorFileDescriptorEventArgs.cs
│ │ └── ZmqMonitorIntervalEventArgs.cs
│ ├── Poller.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProtocolType.cs
│ ├── ReceiveSocket.cs
│ ├── ReceiveStatus.cs
│ ├── RouterBehavior.cs
│ ├── SendReceiveExtensions.cs
│ ├── SendSocket.cs
│ ├── SendStatus.cs
│ ├── Settings.StyleCop
│ ├── SocketEventArgs.cs
│ ├── SocketFlags.cs
│ ├── SocketOption.cs
│ ├── SocketType.cs
│ ├── SubscribeExtSocket.cs
│ ├── SubscribeSocket.cs
│ ├── TcpKeepaliveBehaviour.cs
│ ├── ZeroMQ.csproj
│ ├── ZeroMQ.Mono.csproj
│ ├── ZmqContext.cs
│ ├── ZmqException.cs
│ ├── ZmqMessage.cs
│ ├── ZmqSocket.cs
│ ├── ZmqSocketException.cs
│ ├── ZmqVersion.cs
│ └── ZmqVersionException.cs
├── ZeroMQ.AcceptanceTests
│ ├── DeviceFixtures.cs
│ ├── DeviceTests
│ │ ├── Forwarder.cs
│ │ ├── Queue.cs
│ │ └── Streamer.cs
│ ├── Messages.cs
│ ├── MonitorFixtures.cs
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── SocketFixtures.cs
│ ├── ZeroMQ.AcceptanceTests.csproj
│ ├── ZeroMQ.AcceptanceTests.Mono.csproj
│ ├── ZmqContextTests
│ │ └── ContextOptions.cs
│ ├── ZmqMonitorTests
│ │ └── MonitorEvents.cs
│ └── ZmqSocketTests
│ ├── Bind_Connect.cs
│ ├── SendMessage_ReceiveMessage.cs
│ ├── Send_Receive.cs
│ ├── SocketOptions.cs
│ └── Subscribe.cs
├── ZeroMQ.Perf.LatLocal
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.LatLocal.csproj
│ └── ZeroMQ.Perf.LatLocal.Mono.csproj
├── ZeroMQ.Perf.LatRemote
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.LatRemote.csproj
│ └── ZeroMQ.Perf.LatRemote.Mono.csproj
├── ZeroMQ.Perf.ThrLocal
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.ThrLocal.csproj
│ └── ZeroMQ.Perf.ThrLocal.Mono.csproj
├── ZeroMQ.Perf.ThrRemote
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.ThrRemote.csproj
│ └── ZeroMQ.Perf.ThrRemote.Mono.csproj
└── ZeroMQ.SimpleTests
├── HelloWorld.cs
├── ITest.cs
├── LatencyBenchmark.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── ReceiveBenchmark.cs
├── Settings.StyleCop
├── ThroughputBenchmark.cs
├── ZeroMQ.SimpleTests.csproj
└── ZeroMQ.SimpleTests.Mono.csproj
27 directories, 144 files
zeromq C# 接口实现
zeromq 比较经典的消息队列 小巧 轻量级 C#接口api 操控简单
文件清单
└── clrzmq-master
├── AUTHORS
├── build.cmd
├── build-with-custom-libzmq.cmd
├── lib
│ ├── x64
│ │ └── what_to_put_here.txt
│ └── x86
│ └── what_to_put_here.txt
├── LICENSE
├── Makefile
├── nuget.sh
├── package.cmd
├── README.md
└── src
├── build.proj
├── clrzmq.5.1.ReSharper
├── clrzmq.6.1.ReSharper
├── clrzmq.Mono.sln
├── clrzmq.sln
├── clrzmq.sln.DotSettings
├── CustomTasks.targets
├── Indentation.vssettings
├── nuget.config
├── Projects.StyleCop
├── Settings.FxCop
├── Shared
│ ├── ProductInfo.cs
│ └── VersionInfo.cs
├── SolutionEvents_Opened.macro
├── ZeroMQ
│ ├── ContextOption.cs
│ ├── Devices
│ │ ├── Device.cs
│ │ ├── DeviceMode.cs
│ │ ├── DeviceRunner.cs
│ │ ├── DeviceSocketSetup.cs
│ │ ├── ForwarderDevice.cs
│ │ ├── IDevice.cs
│ │ ├── QueueDevice.cs
│ │ ├── StreamerDevice.cs
│ │ ├── ThreadedDeviceRunner.cs
│ │ └── ZmqDeviceException.cs
│ ├── DuplexSocket.cs
│ ├── ErrorCode.cs
│ ├── ExecuteExtensions.cs
│ ├── Frame.cs
│ ├── Interop
│ │ ├── ContextProxy.cs
│ │ ├── DisposableIntPtr.cs
│ │ ├── ErrorDetails.cs
│ │ ├── ErrorProxy.cs
│ │ ├── LibZmq.Mono.cs
│ │ ├── LibZmq.NET.cs
│ │ ├── ManifestResource.cs
│ │ ├── MonitorEventData.cs
│ │ ├── Platform.Mono.cs
│ │ ├── Platform.NET.cs
│ │ ├── Platform.Unix.cs
│ │ ├── Platform.Windows.cs
│ │ ├── PollerProxy.cs
│ │ ├── PollEvents.cs
│ │ ├── PollItem.cs
│ │ ├── Retry.cs
│ │ ├── SafeLibraryHandle.cs
│ │ ├── SocketProxy.cs
│ │ ├── Tracer.cs
│ │ ├── UnmanagedLibrary.cs
│ │ └── ZmqMsgT.cs
│ ├── Monitoring
│ │ ├── MonitorContextExtensions.cs
│ │ ├── MonitorEvents.cs
│ │ ├── MonitorSocketExtensions.cs
│ │ ├── ZmqMonitor.cs
│ │ ├── ZmqMonitorErrorEventArgs.cs
│ │ ├── ZmqMonitorEventArgs.cs
│ │ ├── ZmqMonitorFileDescriptorEventArgs.cs
│ │ └── ZmqMonitorIntervalEventArgs.cs
│ ├── Poller.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProtocolType.cs
│ ├── ReceiveSocket.cs
│ ├── ReceiveStatus.cs
│ ├── RouterBehavior.cs
│ ├── SendReceiveExtensions.cs
│ ├── SendSocket.cs
│ ├── SendStatus.cs
│ ├── Settings.StyleCop
│ ├── SocketEventArgs.cs
│ ├── SocketFlags.cs
│ ├── SocketOption.cs
│ ├── SocketType.cs
│ ├── SubscribeExtSocket.cs
│ ├── SubscribeSocket.cs
│ ├── TcpKeepaliveBehaviour.cs
│ ├── ZeroMQ.csproj
│ ├── ZeroMQ.Mono.csproj
│ ├── ZmqContext.cs
│ ├── ZmqException.cs
│ ├── ZmqMessage.cs
│ ├── ZmqSocket.cs
│ ├── ZmqSocketException.cs
│ ├── ZmqVersion.cs
│ └── ZmqVersionException.cs
├── ZeroMQ.AcceptanceTests
│ ├── DeviceFixtures.cs
│ ├── DeviceTests
│ │ ├── Forwarder.cs
│ │ ├── Queue.cs
│ │ └── Streamer.cs
│ ├── Messages.cs
│ ├── MonitorFixtures.cs
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── SocketFixtures.cs
│ ├── ZeroMQ.AcceptanceTests.csproj
│ ├── ZeroMQ.AcceptanceTests.Mono.csproj
│ ├── ZmqContextTests
│ │ └── ContextOptions.cs
│ ├── ZmqMonitorTests
│ │ └── MonitorEvents.cs
│ └── ZmqSocketTests
│ ├── Bind_Connect.cs
│ ├── SendMessage_ReceiveMessage.cs
│ ├── Send_Receive.cs
│ ├── SocketOptions.cs
│ └── Subscribe.cs
├── ZeroMQ.Perf.LatLocal
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.LatLocal.csproj
│ └── ZeroMQ.Perf.LatLocal.Mono.csproj
├── ZeroMQ.Perf.LatRemote
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.LatRemote.csproj
│ └── ZeroMQ.Perf.LatRemote.Mono.csproj
├── ZeroMQ.Perf.ThrLocal
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.ThrLocal.csproj
│ └── ZeroMQ.Perf.ThrLocal.Mono.csproj
├── ZeroMQ.Perf.ThrRemote
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Settings.StyleCop
│ ├── ZeroMQ.Perf.ThrRemote.csproj
│ └── ZeroMQ.Perf.ThrRemote.Mono.csproj
└── ZeroMQ.SimpleTests
├── HelloWorld.cs
├── ITest.cs
├── LatencyBenchmark.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── ReceiveBenchmark.cs
├── Settings.StyleCop
├── ThroughputBenchmark.cs
├── ZeroMQ.SimpleTests.csproj
└── ZeroMQ.SimpleTests.Mono.csproj
27 directories, 144 files