Search Results for

    Apizr

    Refit based web api client management, but resilient (retry, connectivity, cache, auth, log, priority, etc...)

    Read - Documentation Browse - Source

    History

    The Apizr project was motivated by this 2015 famous blog post about resilient networking.

    Its main focus was to address at least everything explained into this article, meanning:

    • Easy access to restful services
    • Work offline with cache management
    • Handle errors with retry pattern and global catching
    • Handle request priority
    • Check connectivity
    • Fast development time
    • Easy maintenance
    • Reuse existing libraries

    But also, some more core features like:

    • Trace http traffic
    • Handle authentication

    And more integration/extension independent optional features like:

    • Choose cache, log and connectivity providers
    • Register it as an MS DI extension
    • Integrate with Shiny
    • Map model with DTO
    • Use Mediator pattern
    • Use Optional pattern

    The list is not exhaustive, there’s more, but what we wanted was playing with all of it with as less code as we could, not worrying about plumbing things and being sure everything is wired and handled by design or almost.

    Inspired by Refit.Insane.PowerPack, we wanted to make it simple to use, mixing attribute decorations and fluent configuration.

    Also, we built this lib to make it work with any .Net Standard 2.0 compliant platform, so we could use it seamlessly from any kind of app, with or without DI goodness.

    Libraries

    Change Log

    Project Current Upcoming
    Apizr NuGet NuGet Pre Release
    Apizr.Extensions.Microsoft.DependencyInjection NuGet NuGet Pre Release
    Apizr.Extensions.Microsoft.Caching NuGet NuGet Pre Release
    Apizr.Integrations.Akavache NuGet NuGet Pre Release
    Apizr.Integrations.MonkeyCache NuGet NuGet Pre Release
    Apizr.Integrations.Fusillade NuGet NuGet Pre Release
    Apizr.Integrations.MediatR NuGet NuGet Pre Release
    Apizr.Integrations.Optional NuGet NuGet Pre Release
    Apizr.Integrations.AutoMapper NuGet NuGet Pre Release
    Apizr.Tools.NSwag NuGet NuGet Pre Release

    Install the NuGet package of your choice:

    • Apizr package comes with the For and CrudFor static instantiation approach (which you can register in your DI container then)
    • Apizr.Extensions.Microsoft.DependencyInjection package extends your IServiceCollection with AddApizr, AddApizrFor and AddApizrCrudFor registration methods
    • Apizr.Extensions.Microsoft.Caching package brings an ICacheHandler method mapping implementation for MS Extensions Caching
    • Apizr.Integrations.Akavache package brings an ICacheHandler method mapping implementation for Akavache
    • Apizr.Integrations.MonkeyCache package brings an ICacheHandler method mapping implementation for MonkeyCache
    • Apizr.Integrations.Fusillade package enables request priority management using Fusillade
    • Apizr.Integrations.MediatR package enables request auto handling with mediation using MediatR
    • Apizr.Integrations.Optional package enables Optional result from mediation requests (requires MediatR integration) using Optional.Async
    • Apizr.Integrations.AutoMapper package enables auto mapping for mediation requests (requires MediatR integration and could work with Optional integration) using AutoMapper

    Install the NuGet .NET Tool if needed:

    • Apizr.Tools.NSwag package enables Apizr files generation by command line (Models, Services and Registration) from an OpenApi definition using NSwag

    Apizr core package make use of well known nuget packages to make the magic appear:

    Package Features
    Refit Auto-implement web api interface and deal with HttpClient
    Polly Apply some policies like Retry, CircuitBreaker, etc...
    Microsoft.Extensions.Logging.Abstractions Delegate logging layer to MS Extensions Logging

    It also comes with some handling interfaces to let you provide your own services for:

    • Caching with ICacheHandler, which comes with its default VoidCacheHandler (no cache), but also with:
      • InMemoryCacheHandler & DistributedCacheHandler: MS Extensions Caching methods mapping interface (Integration package referenced above), meaning you can provide any compatible caching engine
      • AkavacheCacheHandler: Akavache methods mapping interface (Integration package referenced above)
      • MonkeyCacheHandler: MonkeyCache methods mapping interface (Integration package referenced above)
    • Logging As Apizr relies on official MS ILogger interface, you may want to provide any compatible logging engine (built-in DebugLogger activated by default)
    • Connectivity with IConnectivityHandler, which comes with its default VoidConnectivityHandler (no connectivity check)
    • Mapping with IMappingHandler, which comes with its default VoidMappingHandler (no mapping conversion), but also with:
      • AutoMapperMappingHandler: AutoMapper mapping methods mapping interface (Integration package referenced above)
    In This Article
    Back to top Supported by Respawnsive