Dignus 1.2.0

dotnet add package Dignus --version 1.2.0
                    
NuGet\Install-Package Dignus -Version 1.2.0
                    
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="Dignus" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dignus" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Dignus" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Dignus --version 1.2.0
                    
#r "nuget: Dignus, 1.2.0"
                    
#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.
#:package Dignus@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dignus&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Dignus&version=1.2.0
                    
Install as a Cake Tool

Dignus.Core

Shared runtime foundation for the Dignus ecosystem.

Provides common runtime components used across Dignus libraries, including collections, dependency injection, coroutine scheduling, object pooling, and pipeline utilities.


Overview

  • Base runtime library shared by Dignus modules.
  • Includes performance-oriented collections, lightweight dependency injection, deterministic coroutine scheduling, and reusable framework utilities.
  • Designed for high-throughput runtime systems with minimal allocation in steady-state execution paths.

Namespaces

Namespace Description
Dignus.Collections Array-based collections and concurrent queue implementations.
Dignus.Coroutine Lightweight coroutine scheduling with deterministic updates.
Dignus.DependencyInjection Minimal dependency injection container with constructor and property injection.
Dignus.Framework Object pooling, singleton, and pipeline utilities.

Modules

Dignus.Collections

Contains array-based collections and multi-producer, single-consumer queues.

  • ArrayQueue<T> — expandable queue optimized for sequential reads and writes.
  • CompactableArrayQueue<T> — queue that reuses cleared slots through compaction.
  • UniqueSet<T> — custom hash-based unique collection.
  • SynchronizedArrayQueue<T> / SynchronizedUniqueSet<T> — synchronized wrappers for concurrent access.
  • MpscBoundedQueue<T> — fixed-capacity multi-producer, single-consumer queue with lock-free enqueue and single-threaded dequeue.
  • MpscUnboundedQueue<T> — unbounded multi-producer, single-consumer queue with lock-free enqueue and single-threaded dequeue.

Dignus.Coroutine

Implements deterministic coroutine scheduling.

  • CoroutineHandle — represents an active coroutine.
  • CoroutineHandler — manages coroutine execution, lifecycle, and nested enumerators.
  • DelayInSeconds, DelayInMilliseconds, WaitWhile — built-in wait conditions.

Dignus.DependencyInjection

Provides lightweight service registration and resolution.

  • ServiceContainer, ServiceProvider, ServiceCollection — container infrastructure.
  • ServiceRegistration — registration metadata for services and factories.
  • LifeScope — service lifetime definition: Transient or Singleton.
  • ConstructorDelegateFactory — creates and caches constructor delegates.
  • InjectableAttribute, InjectAttribute, InjectConstructorAttribute — attribute-based registration and injection.
  • ServiceContainerExtensions, ServiceCollectionExtensions, ServiceProviderExtensions — registration and resolution helpers.

Dignus.Framework

Provides reusable memory and execution utilities.

  • ObjectPoolBase<T> / ObjectPool<T> — reusable object pooling infrastructure.

  • Singleton<T> — thread-safe lazy singleton helper.

  • AsyncPipeline<TContext> — async middleware pipeline using ref-based context passing.

    • AsyncPipelineDelegate<TContext> — middleware delegate signature.
    • AsyncPipelineNext<TContext> — continuation used to invoke the next middleware.
    • IAsyncMiddleware<TContext> / AsyncHandlerMiddleware<TContext> — middleware interface and delegate adapter.
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 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net48 is compatible.  net481 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.
  • .NETFramework 4.8

    • No dependencies.
  • .NETFramework 4.8.1

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Dignus:

Package Downloads
Dignus.Sockets

High-performance asynchronous socket library for the Dignus.

Dignus.Log

Lightweight and fast logging library for Dignus.

Dignus.Unity

Unity integration and scene management extensions for the Dignus.

Dignus.Extensions.DependencyInjection

Lightweight DI extension for integrating Dignus with Microsoft.Extensions.DependencyInjection.

Dignus.Actor.Core

Core runtime and primitives for building actor-based systems with Dignus ActorSystem.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 617 6/24/2026
1.1.4 702 5/8/2026
1.1.3 677 4/23/2026
1.1.2 359 3/22/2026
1.1.1 582 2/28/2026
1.1.0 362 2/15/2026
1.0.12 630 12/10/2025
1.0.11 257 11/24/2025
1.0.10 287 11/23/2025
1.0.9 311 11/22/2025
1.0.8 311 11/21/2025
1.0.7 500 11/19/2025
1.0.6 412 11/5/2025
1.0.5 224 11/4/2025
1.0.4 359 11/2/2025
1.0.3 340 10/30/2025
1.0.2 254 10/29/2025
1.0.1 297 10/28/2025
1.0.0 261 10/28/2025