TWCore.Messaging.NSQ 3.1.0-beta1

This is a prerelease version of TWCore.Messaging.NSQ.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TWCore.Messaging.NSQ --version 3.1.0-beta1
NuGet\Install-Package TWCore.Messaging.NSQ -Version 3.1.0-beta1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TWCore.Messaging.NSQ" Version="3.1.0-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TWCore.Messaging.NSQ --version 3.1.0-beta1
#r "nuget: TWCore.Messaging.NSQ, 3.1.0-beta1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TWCore.Messaging.NSQ as a Cake Addin
#addin nuget:?package=TWCore.Messaging.NSQ&version=3.1.0-beta1&prerelease

// Install TWCore.Messaging.NSQ as a Cake Tool
#tool nuget:?package=TWCore.Messaging.NSQ&version=3.1.0-beta1&prerelease

<img src="https://raw.githubusercontent.com/tonyredondo/TWCore2/master/doc/icon.png" alt="Potato" width="45px" height="45px" /> TWCore 3.1

Build status Nuget

A multipurpose framework library used to create microservices solutions on multiple platforms (runs on windows, linux, linux-arm [raspberry pi], and osx).

Compatible with

  • .NET Framework 4.7.2
  • netstandard2.0
  • netcoreapp2.1
  • netcoreapp2.2
  • netcoreapp3.1
  • net5.0
  • net6.0
  • net7.0
  • net8.0

Advantages

  • Easy development of microservices: With fewer code you can subscribe to a message broker and start to process messages as pub/sub or RPC architecture.
  • Completely agnostic and loosely coupled: All subsystems of the framework are registered with a dependency injector engine, so using only the configurations files you can switch between Messages brokers, Serialization formats, Rpc transports, Stream compressors, and many more.
  • Integrated Log, Trace, and Status engines: you can log on different storage, also use differents trace storages and you have an integrated status library to check your service health.
  • A bot subsystem to create bot services on Telegram and Slack
  • Extensions methods for objects, strings, and IEnumerables.
  • Aspnet Core object viewer and compiler developer tool.
Supported log storages
  • Console
  • File
  • Html File
  • MessageBroker
  • ElasticSearch
  • Mail
Supported trace storages
  • File
  • MessageBroker
Supported compressors
  • Gzip
  • Deflate
  • Brotli
Supported messages brokers
  • RabbitMQ
  • NATS
  • NSQ
  • Kafka
  • Redis (Pub/Sub)
Supported key/value cache storages
  • Custom TWCore
  • Redis
Supported bot connectors
  • Slack
  • Telegram
Supported serializers
  • Newtonsoft JsonNet
  • XmlSerializer
  • BinaryFormatter
  • Utf8Json
  • MsgPack
  • NSerializer (Custom binary serializer with object reference graph support and cyclic reference)
  • RawSerializer (Like NSerializer but without internal caching, faster, but serialized objects are bigger in bytes size.)

Simple Object Serializer Benchmark

BenchmarkDotNet=v0.11.3, OS=Windows 10.0.17134.523 (1803/April2018Update/Redstone4)\
Intel Core i7-4770R CPU 3.20GHz (Haswell), 1 CPU, 8 logical and 4 physical cores\
.NET Core SDK=2.2.101\
  [Host] : .NET Core 2.2.0 (CoreCLR 4.6.27110.04, CoreFX 4.6.27110.04), 64bit RyuJIT\
  Core   : .NET Core 2.2.0 (CoreCLR 4.6.27110.04, CoreFX 4.6.27110.04), 64bit RyuJIT\
Job=Core  Runtime=Core
Method N Mean Error StdDev Min Max Gen 0/1k Op Gen 1/1k Op Gen 2/1k Op Allocated Memory/Op
NewtonsoftJsonSerializerToStream 1 42.935 us 0.4296 us 0.4019 us 42.123 us 43.608 us 3.6621 0.1831 - 23296 B
NewtonsoftJsonDeserializerFromStream 1 78.432 us 1.5565 us 1.4560 us 76.154 us 80.546 us 3.5400 0.8545 - 22960 B
XmlSerializerToStream 1 45.512 us 0.3721 us 0.3299 us 44.858 us 46.154 us 1.8921 - - 12224 B
XmlDeserializerFromStream 1 91.809 us 1.4537 us 1.3598 us 89.874 us 94.327 us 4.5166 0.3662 - 28608 B
BinaryFormatterSerializerToStream 1 53.381 us 0.5491 us 0.5137 us 52.418 us 54.022 us 2.5635 - - 16504 B
BinaryFormatterDeserializerFromStream 1 44.802 us 0.5174 us 0.4840 us 43.914 us 45.613 us 3.6011 0.4883 - 22720 B
Utf8JsonSerializerToStream 1 7.609 us 0.1364 us 0.1276 us 7.429 us 7.832 us - - - -
Utf8JsonDeserializerFromStream 1 20.249 us 0.2015 us 0.1885 us 20.009 us 20.641 us 0.9460 0.1831 - 6016 B
MessagePackSerializerToStream 1 7.777 us 0.0682 us 0.0638 us 7.658 us 7.900 us - - - 96 B
MessagePackDeserializerFromStream 1 11.087 us 0.1592 us 0.1489 us 10.795 us 11.419 us 1.3123 0.3204 - 8272 B
NSerializerToStream 1 7.823 us 0.1440 us 0.1347 us 7.607 us 8.051 us - - - -
NDeserializerFromStream 1 7.301 us 0.0702 us 0.0657 us 7.106 us 7.405 us 0.4425 0.0458 - 2800 B
RawSerializerToStream 1 6.574 us 0.1298 us 0.1275 us 6.375 us 6.781 us - - - -
RawDeserializerFromStream 1 7.837 us 0.0655 us 0.0613 us 7.748 us 7.937 us 0.5569 0.0763 - 3520 B

<img src="https://raw.githubusercontent.com/tonyredondo/TWCore2/master/doc/serializer-deserializer1.png" alt="Serializer Graph" />

Created by Daniel Redondo

Powered By

<img src="https://raw.githubusercontent.com/tonyredondo/TWCore2/master/doc/rider.jpg" alt="Rider" width="50px" height="50px" /><img src="https://raw.githubusercontent.com/tonyredondo/TWCore2/master/doc/dotTrace.png" alt="dotTrace" width="50px" height="50px" /><img src="https://raw.githubusercontent.com/tonyredondo/TWCore2/master/doc/dotMemory.png" alt="dotMemory" width="50px" height="50px" />

Thanks to @jetbrains for helping on this development with the licenses for Rider, dotTrace and dotMemory

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.0 197 10/22/2023
3.1.0-beta2 90 10/20/2023
3.1.0-beta1 69 10/19/2023
3.0.0-beta5 456 9/8/2019
3.0.0-beta4 407 9/8/2019
3.0.0-beta3 426 8/20/2019
3.0.0-beta2 409 8/18/2019
3.0.0-beta1 394 8/18/2019
2.1.181 765 7/24/2019
2.1.181-beta5 441 7/16/2019
2.1.181-beta4 435 5/10/2019
2.1.181-beta3 448 3/16/2019
2.1.181-beta2 462 3/8/2019
2.1.181-beta 483 3/3/2019
2.1.180 676 3/1/2019
2.1.180-rc1 436 2/28/2019
2.1.180-beta9 526 2/14/2019
2.1.180-beta8 516 2/14/2019
2.1.180-beta7 544 2/8/2019
2.1.180-beta6 498 2/7/2019
2.1.180-beta5 521 2/6/2019
2.1.180-beta4 528 2/5/2019
2.1.180-beta3 512 2/4/2019
2.1.180-beta2 557 2/4/2019
2.1.180-beta1 546 2/4/2019
2.1.180-alpha8 550 1/30/2019
2.1.180-alpha7 533 1/22/2019
2.1.180-alpha6 526 1/21/2019
2.1.180-alpha5 545 1/18/2019
2.1.180-alpha4 590 1/17/2019
2.1.180-alpha3 533 1/16/2019
2.1.180-alpha2 536 1/16/2019
2.1.180-alpha1 513 1/15/2019
2.1.179 735 1/9/2019
2.1.179-beta9 563 1/3/2019
2.1.179-beta8 552 1/2/2019
2.1.179-beta7 577 1/2/2019
2.1.179-beta6 518 12/21/2018
2.1.179-beta5 489 12/19/2018
2.1.179-beta4 514 12/19/2018
2.1.179-beta3 487 12/19/2018
2.1.179-beta2 497 12/18/2018
2.1.179-beta12 518 1/8/2019
2.1.179-beta11 555 1/7/2019
2.1.179-beta10 521 1/4/2019
2.1.179-beta1 515 12/18/2018
2.1.179-alpha9 523 12/18/2018
2.1.179-alpha8 541 11/28/2018
2.1.179-alpha7 558 11/22/2018
2.1.179-alpha6 556 11/20/2018
2.1.179-alpha5 568 11/20/2018
2.1.179-alpha4 570 11/20/2018
2.1.179-alpha3 566 11/19/2018
2.1.179-alpha2 561 11/16/2018
2.1.179-alpha 584 11/16/2018
2.1.178 796 11/6/2018
2.1.178-beta2 566 11/6/2018
2.1.178-beta1 557 10/29/2018
2.1.178-alpha7 576 10/22/2018
2.1.178-alpha6 557 10/19/2018
2.1.178-alpha5 585 10/17/2018
2.1.178-alpha4 642 10/14/2018
2.1.178-alpha3 589 10/13/2018
2.1.178-alpha2 599 10/9/2018
2.1.178-alpha 581 10/9/2018
2.1.177 774 9/27/2018
2.1.177-rc4 578 9/26/2018
2.1.177-rc3 546 9/26/2018
2.1.177-rc2 583 9/26/2018
2.1.177-rc1 573 9/25/2018
2.1.177-beta 557 9/25/2018
2.1.177-alpha 588 9/24/2018
2.1.176 799 9/20/2018
2.1.175 770 9/19/2018
2.1.174 761 9/16/2018
2.1.173 786 9/12/2018
2.1.173-beta 560 9/12/2018
2.1.172 849 9/11/2018
2.1.171 794 8/27/2018
2.1.171-rc1 641 8/27/2018
2.1.171-beta 614 8/27/2018
2.1.170 852 8/15/2018
2.1.169 830 8/14/2018
2.1.168 867 8/10/2018
2.1.167 885 8/9/2018
2.1.166 883 8/9/2018
2.1.165 934 8/9/2018
2.1.164 950 8/8/2018
2.1.163 845 8/8/2018
2.1.162 854 8/8/2018
2.1.161 893 8/8/2018
2.1.160 897 8/7/2018
2.1.159 882 8/3/2018
2.1.158 890 8/2/2018
2.1.157 817 8/1/2018
2.1.156 826 7/30/2018
2.1.155 871 7/29/2018
2.1.154 857 7/19/2018
2.1.153 1,003 7/12/2018
2.1.152 858 7/11/2018
2.1.151 1,049 7/11/2018
2.1.150 1,009 7/11/2018
2.1.149 966 7/10/2018
2.1.148 971 7/4/2018
2.1.147 939 7/3/2018
2.1.146 860 7/1/2018
2.1.145 877 7/1/2018
2.1.144 816 6/28/2018
2.1.143 988 6/25/2018
2.1.142 989 6/19/2018
2.1.141 950 6/19/2018
2.1.140 888 6/18/2018
2.0.149 1,050 7/10/2018
2.0.148 1,013 7/4/2018
2.0.147 912 7/3/2018
2.0.146 852 7/1/2018
2.0.145 957 7/1/2018
2.0.144 880 6/28/2018
2.0.143 989 6/25/2018
2.0.142 987 6/19/2018
2.0.141 924 6/19/2018
2.0.140 1,029 6/18/2018
2.0.139 969 6/18/2018
2.0.138 944 6/15/2018
2.0.137 1,099 6/15/2018
2.0.136 943 6/12/2018
2.0.135 898 6/11/2018
2.0.134 859 6/11/2018
2.0.133 977 6/11/2018
0.2.132 1,014 5/25/2018
0.2.131 865 5/21/2018
0.2.130 877 5/20/2018
0.2.129 1,004 5/20/2018
0.2.128 967 5/14/2018
0.2.127 864 5/11/2018
0.2.126 1,051 5/10/2018
0.2.125 897 5/8/2018
0.2.124 890 4/30/2018
0.2.123 1,016 4/29/2018
0.2.122 988 4/27/2018
0.2.121 992 4/26/2018
0.2.120 1,006 4/25/2018
0.2.119 985 4/25/2018
0.2.118 1,024 4/25/2018
0.2.117 849 4/24/2018
0.2.116 859 4/24/2018
0.2.115 992 4/19/2018
0.2.114 954 4/19/2018
0.2.113 987 4/19/2018
0.2.112 966 4/18/2018
0.2.111 918 4/18/2018
0.2.110 988 4/18/2018
0.2.109 924 4/17/2018
0.2.108 931 4/17/2018
0.2.107 986 4/9/2018
0.2.106 1,129 4/6/2018
0.2.105 967 4/3/2018
0.2.104 966 4/2/2018
0.2.103 886 3/28/2018
0.2.102 1,028 3/28/2018
0.2.101 941 3/28/2018
0.2.100 989 3/27/2018
0.2.99 1,132 3/24/2018
0.2.98 1,164 3/23/2018
0.2.97 987 3/19/2018
0.2.96 1,011 3/16/2018
0.2.95 1,004 3/15/2018
0.2.94 874 3/13/2018
0.2.93 1,037 3/12/2018
0.2.92 924 3/12/2018
0.2.91 983 3/12/2018
0.2.90 991 3/11/2018
0.2.89 1,009 3/6/2018
0.2.88 1,069 3/2/2018
0.2.87 1,001 3/1/2018
0.2.86 987 2/28/2018
0.2.85 991 2/28/2018
0.2.84 973 2/28/2018
0.2.83 1,030 2/27/2018
0.2.82 962 2/26/2018
0.2.81 879 2/23/2018
0.2.80 995 2/22/2018
0.2.79 1,006 2/21/2018
0.2.78 1,092 2/16/2018
0.2.77 1,009 2/14/2018
0.2.76 1,012 2/14/2018
0.2.75 1,017 2/9/2018
0.2.74 932 2/9/2018
0.2.73 999 2/1/2018
0.2.72 1,056 1/31/2018
0.2.71 944 1/30/2018
0.2.70 969 1/29/2018
0.2.69 1,001 1/26/2018
0.2.68 982 1/23/2018
0.2.67 1,016 1/22/2018
0.2.66 1,019 1/22/2018
0.2.65 1,030 1/19/2018
0.2.64 1,016 1/17/2018
0.2.63 981 1/16/2018
0.2.62 997 1/15/2018
0.2.61 904 12/18/2017
0.2.60 925 12/6/2017
0.2.59 913 12/5/2017
0.2.58 963 12/4/2017
0.2.57 951 12/1/2017
0.2.56 925 11/30/2017
0.2.55 924 11/28/2017
0.2.54 918 11/28/2017
0.2.53 912 11/28/2017
0.2.52 906 11/26/2017
0.2.51 891 11/24/2017
0.2.50 894 11/23/2017
0.2.49 870 11/17/2017
0.2.48 890 11/17/2017
0.2.47 875 11/16/2017
0.2.46 935 11/15/2017
0.2.45 911 11/13/2017
0.2.44 917 11/7/2017
0.2.43 901 11/7/2017
0.2.42 922 11/6/2017
0.2.41 893 10/31/2017
0.2.40 929 10/31/2017
0.2.39 887 10/26/2017
0.2.38 935 10/26/2017
0.2.37 891 10/25/2017
0.2.36 869 10/23/2017
0.2.35 859 10/20/2017
0.2.34 850 10/13/2017
0.2.33 873 10/10/2017
0.2.32 936 10/9/2017
0.2.31 924 10/7/2017
0.2.30 926 10/6/2017
0.2.29 900 9/29/2017
0.2.28 925 9/27/2017
0.2.27 919 9/25/2017
0.2.26 916 9/22/2017
0.2.25 920 9/20/2017
0.2.24 917 9/19/2017
0.2.23 927 9/13/2017
0.2.22 872 9/13/2017
0.2.21 897 9/13/2017
0.2.20 929 9/13/2017
0.2.19 882 9/12/2017
0.2.18 855 9/12/2017
0.2.17 913 9/11/2017
0.2.16 941 9/11/2017
0.2.15 893 9/8/2017
0.2.10 965 9/8/2017
0.2.9 971 8/29/2017
0.2.6 907 8/25/2017
0.2.5 914 8/16/2017
0.2.1-alpha 710 8/16/2017