嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
消息中间件NetMQ
NetMQ:ZeroMQ的.Net版本,ZeroMQ简单来说就是局域网内的消息中间件(与MSMQ类似),包括了进程间通讯、点对点通讯、订阅模式通讯等等,底层用更“完美”的Socket实现,ZeroMQ实现了多语言、跨平台、高效率等诸多优势
.
├── C#消息中间件NetMQ_netmq-patterns-sample-master.zip
└── netmq-patterns-sample-master
├── DEALERProxyDEALER
│ ├── DEALERProxyDEALER.Client
│ │ ├── App.config
│ │ ├── DEALERProxyDEALER.Client.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ └── DEALERProxyDEALER.Server
│ ├── App.config
│ ├── DEALERProxyDEALER.Server.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── packages.config
├── DEALERProxyREP
│ ├── DEALERProxyREP.Client
│ │ ├── App.config
│ │ ├── DEALERProxyREP.Client.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── packages.config
│ └── DEALERProxyREP.Server
│ ├── App.config
│ ├── DEALERProxyREP.Server.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── packages.config
├── Pub-Sub
│ ├── PubSub.Client
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PubSub.Client.csproj
│ │ └── packages.config
│ ├── PubSub.Proxy
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PubSub.Proxy.csproj
│ │ └── packages.config
│ └── PubSub.Server
│ ├── App.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PubSub.Server.csproj
│ └── packages.config
├── README.md
├── REQProxyREP
│ ├── REQProxyREP.Client
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── REQProxyREP.Client.csproj
│ │ └── packages.config
│ └── REQProxyREP.Server
│ ├── App.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── REQProxyREP.Server.csproj
│ └── packages.config
├── RedisPubSub
│ ├── RedisPubSub.Client
│ │ ├── App.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RedisPubSub.Client.csproj
│ │ └── packages.config
│ └── RedisPubSub.Server
│ ├── App.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RedisPubSub.Server.csproj
│ └── packages.config
└── netmq-patterns-sample.sln
28 directories, 58 files