Felsökning.Utilities.Reentrants 0.0.3-beta

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Felsökning.Utilities.Reentrants.
dotnet add package Felsökning.Utilities.Reentrants --version 0.0.3-beta
NuGet\Install-Package Felsökning.Utilities.Reentrants -Version 0.0.3-beta
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="Felsökning.Utilities.Reentrants" Version="0.0.3-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Felsökning.Utilities.Reentrants --version 0.0.3-beta
#r "nuget: Felsökning.Utilities.Reentrants, 0.0.3-beta"
#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 Felsökning.Utilities.Reentrants as a Cake Addin
#addin nuget:?package=Felsökning.Utilities.Reentrants&version=0.0.3-beta&prerelease

// Install Felsökning.Utilities.Reentrants as a Cake Tool
#tool nuget:?package=Felsökning.Utilities.Reentrants&version=0.0.3-beta&prerelease

Initial release includes a class called ReentrantHttpClient. You can use this class to avail of a singleton instance of the HttpClient object, to conserve resources. Further information on why HttpClient is a special case can be found in these locations:

https://aspnetmonsters.com/2016/08/2016-08-27-httpclientwrong/ https://mobtowers.com/2017/12/15/httpclient-for-high-throughput-applications/

Sample use:

using (ReentrantHttpClient newClient = new ReentrantHttpClient(hostname: "https://www.linkedin.com/li/track"))
{
    int[] x = new int[10];
    for(int i = 0; i < 10; i++)
    {
                    x.SetValue(value: i, index: i);
    }

    newClient.SetAcceptApplicationJsonHeaders();

    Parallel.ForEach(
       x,
       obj =>
      {
           Stopwatch stopWatch = new Stopwatch();
           stopWatch.Start();
           Console.WriteLine(value: $"Thread {obj} has started and is waiting to check out the client.");
           newClient.WaitForCheckOut();

           Console.WriteLine(value: $"Thread {obj} has receieved the HttpClient and took {stopWatch.Elapsed}.");

           string response = newClient.WaitForAsyncString().Result;
           Console.WriteLine($"Thread {obj} has received {response} from LinkedIn.");

           Console.WriteLine($"Thread {obj} is sleeping for 2 seconds...");
           Thread.Sleep((int)TimeSpan.FromSeconds(2).TotalMilliseconds);

           Console.WriteLine(value: $"Thread {obj} is checking-in the client.");
           newClient.CheckIn();
      });

    x = null;
}

Console.ReadLine();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 netcoreapp1.0 is compatible.  netcoreapp1.1 is compatible.  netcoreapp2.0 is compatible.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 is compatible.  netstandard1.3 is compatible.  netstandard1.4 is compatible.  netstandard1.5 is compatible.  netstandard1.6 is compatible.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 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.
  • .NETCoreApp 1.0

  • .NETCoreApp 1.1

  • .NETCoreApp 2.0

    • No dependencies.
  • .NETCoreApp 2.1

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETFramework 4.5.1

    • No dependencies.
  • .NETFramework 4.5.2

    • No dependencies.
  • .NETFramework 4.6

    • No dependencies.
  • .NETFramework 4.6.1

    • No dependencies.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETFramework 4.7.1

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 1.1

  • .NETStandard 1.2

  • .NETStandard 1.3

  • .NETStandard 1.4

  • .NETStandard 1.5

  • .NETStandard 1.6

  • .NETStandard 2.0

    • No dependencies.

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
0.0.3-beta 340 6/22/2019

Expanded to include more of the .NETs.