TheOmenDen.Shared.Interfaces 2.12.1.48

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

// Install TheOmenDen.Shared.Interfaces as a Cake Tool
#tool nuget:?package=TheOmenDen.Shared.Interfaces&version=2.12.1.48

TheOmenDen Shared Interfaces

A collection of interfaces present in The Omen Den's applications

Below are descriptions to the best of my ability for what each section in the namespaces defines.

1. Accessors

  • IAccessor
    • Allows for simple access to read only methods defined across an entity.
    • Works for Database entities, and other areas where you need to limit to read only methods.
  • IAsyncStreamAccessor
    • ALlows for asynchronous streaming access to read only methods defined across an entity.
    • Allows for await foreach by way of returning an IAsyncEnumerable.
  • IKeyedAccessor
    • Allows for a bit more complicated access to read only methods defined across an entity.
    • Working with IEntityKey as the prevealent key to allow for searching across conditions.
    • Methods defined here return a Tuple combination of the Result and the corresponding entities retrieved.
      • The result specified is a boolean indicating whether the underlying operation was successful True on success, otherwise False.
      • This is to hopefully guide the implementation away from throwing an exception when the operation is unsuccessful.
  • IKeyedAsyncStreamAccessor
    • Similar to the IKeyedAccessor but returns only theIAsyncEnumerable stream
    • Allows for streaming access to read only methods defined across an keyed entities, and returns matches for the provided key.

2. Repositories

  • IRepository
    • A covariant interface that requires the implementation to also implement IEnumerable.
    • Defines methods for Adding/Creating, Updating, and Deleting entties with CancellationToken support on asynchronous methods.
    • This will allow for accessing the underlying methods of the repository with System.Linq as well as foreach loops.
  • IStreamingRepository
    • A covariant interface that requires the implementation to also implement IAsyncEnumerable.
    • Defines methods for Adding/Creating, Updating, and Deleting entties with CancellationToken support on asynchronous methods.
    • This will allow for asynchronous streaming access of the underlying methods via System.Linq.Async as well as await foreach loops.
  • IDataOperations
    • A combination interface that contains the methods defined in both IRepository and IStreamingRepository.
    • Defines methods for Adding/Creating, Updating, and Deleting entties with CancellationToken support on asynchronous methods.
    • This allows for a flexible approach to methods within the implementation to incorporate traditional methods, as well as asynchronous streaming.
  • IKeyedDataOperations
    • A combination interface that contains the methods defined in both IRepository and IStreamingRepository.
      • To better distinguish between IDataOperations and IKeyedDataOperations.
        1. There's the additional constrained generic parameter TKey which requires that the key be provided during construction of an implementation, as well as be of type IEntityKey.
        2. This is intentional since we should be approaching these methods with relative caution, and capture the intent, and rational for object manipulation.
    • Defines methods for Adding/Creating, Updating, and Deleting entties with CancellationToken support on asynchronous methods.
    • A mjaor difference between this interface and IDataOperations is that the results of each method to implement requires a return value. of Tuple{TResult, TEntity}
      • TResult is typically a boolean, but could signify any sort of indicator of the success or failure of the operation.
      • This was done to hopefully discourage exception throwing in the implementations and define a "peaceful" approach to handling failures.
      • This approach does present a tighter coupling between the results of the operation and the Entity(or entities) returned.

3. Services

  • IApiService and IApiService<T>
    • IApiService is an empty interface.
      • This was done for ease of implementation when it came to dependency injection in implementations with Scrutor.
    • IApiService<T> contains CRUD methods that can be used to retrieve and alter information via an external API.
      • CRUD methods are defined to GET, POST, PUT, DELETE and all provide CancellationToken support.
  • IStreamingApiService and IStreamingApiService<T>
    • IStreamingApiService is an empty interface.
      • This was done for ease of implementation when it came to dependency injection in implementations with Scrutor.
    • IstreamingApiService<T>- Defines two different methods of retrieving results from an external API. These methods do allow for CancellationToken support.
      • StreamApiResultsAsync - Returns an IASyncEnumerable<ApiResponse>.
        • ApiResponse - from TheOmenDen.Shared project.
        • This was done to allow for failure of individual objects contained in the response body, while still allowing for streaming of the results.
        • Enumerate with await foreach
      • EnumerateApiResultsAsync - Returns a Task<ApiResponse<IEnumerable<T>>>
        • This will retrieve the results from the api whiel the header content is read, and before the entire result set is read.
        • This was done to provide an easy implementation and encourage the use of the System.Text.Json JsonSerializer's ability to read through streams.

ToDos

  • Define more constructive interfaces
  • Refine the use cases of currently defined interfaces
  • Improve the functionality and performance of interfaces
  • Provide ways for source generators to be used
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TheOmenDen.Shared.Interfaces:

Package Downloads
TheOmenDen.Shared.Services The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A collection of the service implementations used throughout the various apps that The Omen Den develops.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.12.1.48 156 12/1/2023
2.3.20.1734 1,096 3/20/2023
1.11.13.2216 421 11/14/2022
1.10.8.106 1,896 10/8/2022
1.8.27.428 856 8/27/2022
1.7.26.1301 679 7/26/2022

Provides the basis for interfaces for various purposes