Giter Club home page Giter Club logo

hangfire-umbraco-example's Introduction

Hangfire Umbraco Example

A minimal example using Hangfire with Cultiv.Hangfire in Umbraco that:

  1. Dynamically schedules tasks based on a notification

    Startup.cs:

    services.AddUmbraco(_env, _config)
      //...
      .AddNotificationHandler<ContentPublishingNotification, RegisterHangfire>
      //...

    RegisterHangfire.cs:

    RecurringJob.AddOrUpdate<ServiceThatUsesUmbracoContext>(x => x.DoSomethingWithUmbracoContext() , "* * * * *");
  2. Does something with an UmbracoContext

    ServiceThatUsesUmbracoContext.cs:

    public void DoSomethingWithUmbracoContext()
    {
        using (var ctxRef = ctxFactory.EnsureUmbracoContext())
        {
            var contentAtRoot = ctxRef.UmbracoContext.Content!.GetAtRoot();
    
            var ids = string.Join(", ", contentAtRoot.Select(x => x.Id));
    
            Console.WriteLine($"Content IDs at root: {ids}");
        }
    }

Testing

  1. Clone, and run.
  2. In the installer choose a DB type supported by Hangfire (SQL or LocalDb)
  3. Let the installer run (starter kit will be installed)
  4. Stop & start the site.
    (There's a bug in the HangfireComposer that I've partially fixed but need to spend more time looking at)
  5. Publish some content
  6. Check it works - in the console, or set a breakpoint.

hangfire-umbraco-example's People

Contributors

jasonelkin avatar

Stargazers

Nguyen Viet Manh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.