Dignus 1.1.4

dotnet add package Dignus --version 1.1.4
                    
NuGet\Install-Package Dignus -Version 1.1.4
                    
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.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dignus" Version="1.1.4" />
                    
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.1.4
                    
#r "nuget: Dignus, 1.1.4"
                    
#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.1.4
                    
#: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.1.4
                    
Install as a Cake Addin
#tool nuget:?package=Dignus&version=1.1.4
                    
Install as a Cake Tool

Dignus.Core

Shared runtime foundation for the Dignus ecosystem
Provides the low-level building blocks used across Dignus libraries, including collections, dependency injection, coroutine scheduling, object pooling, and pipeline utilities.


Overview

  • Base runtime library used by other Dignus modules.
  • Includes performance-oriented collections, lightweight dependency injection, deterministic coroutine scheduling, and reusable framework utilities.
  • Designed for performance-oriented runtime systems, with a focus on high-throughput execution.

Namespaces

Namespace Description
Dignus.Collections Zero-GC collections including ArrayQueue, CompactableArrayQueue, and UniqueSet.
Dignus.Coroutine Lightweight coroutine handler with deterministic updates.
Dignus.DependencyInjection Minimal DI container with constructor and property injection support.
Dignus.Framework Object pooling, singleton, and pipeline utilities for performance-critical systems.

Modules

Dignus.Collections

Contains zero-allocation, array-based and set-based data structures.

  • ArrayQueue<T> — expandable queue optimized for sequential reads/writes.
  • CompactableArrayQueue<T> — auto-compacting queue that reuses cleared slots.
  • UniqueSet<T> — custom hash-based unique collection with minimal allocation.
  • SynchronizedArrayQueue<T> / SynchronizedUniqueSet<T> — thread-safe wrappers.
  • MpscBoundedQueue<T> — fixed-capacity multi-producer, single-consumer queue optimized for lock-free enqueue and single-threaded dequeue.

Dignus.Coroutine

Implements allocation-free coroutine scheduling.

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

Dignus.DependencyInjection

Minimal, high-speed dependency injection framework.

  • ServiceContainer, ServiceProvider, ServiceCollection — container infrastructure.
  • ServiceRegistration — metadata for registered services and factories.
  • LifeScope — defines lifetime (Transient / Singleton).
  • ConstructorDelegateFactory — builds and caches fast constructor delegates for registered services.
  • InjectableAttribute, InjectAttribute, InjectConstructorAttribute — attribute-driven registration.
  • ServiceContainerExtensions, ServiceCollectionExtensions, ServiceProviderExtensions — helper APIs for simplified registration and resolution.

Dignus.Framework

Utility layer providing reusable object and execution management systems.

  • ObjectPoolBase<T> / ObjectPool<T> — memory-stable pooling mechanism.
  • Singleton<T> — thread-safe lazy singleton helper.
  • AsyncPipeline<TContext> — allocation-free async middleware pipeline using ref-based context passing.
    • AsyncPipelineDelegate<TContext> — delegate signature for middleware functions.
    • AsyncPipelineNext<TContext> — continuation struct controlling next middleware execution.
    • IAsyncMiddleware<TContext> / AsyncHandlerMiddleware<TContext> — interface and adapter for composing pipelines.
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.1.4 421 5/8/2026
1.1.3 654 4/23/2026
1.1.2 350 3/22/2026
1.1.1 574 2/28/2026
1.1.0 356 2/15/2026
1.0.12 623 12/10/2025
1.0.11 251 11/24/2025
1.0.10 280 11/23/2025
1.0.9 302 11/22/2025
1.0.8 305 11/21/2025
1.0.7 493 11/19/2025
1.0.6 406 11/5/2025
1.0.5 217 11/4/2025
1.0.4 350 11/2/2025
1.0.3 331 10/30/2025
1.0.2 245 10/29/2025
1.0.1 288 10/28/2025
1.0.0 254 10/28/2025