Git Product home page Git Product logo

odinserj.net's People

Contributors

nrkirby avatar odinserj avatar shrinkrayio avatar

Watchers

 avatar  avatar  avatar

odinserj.net's Issues

You are a mastodon

OH MY GOODNESS Hangfire is AMAZING. You are a freaking rock star!! If I weren't happily married I would be propositioning you FOR SURE. Thanks a ton for this stuff.

Guide to implement custom HangFire storage?

Hello!

First of all, thanks for the fantastic library!

Is there a guide to implement custom job storage for HangFire? I want to use it with Azure Queue, without SQL Server (or replacing it with Azure Table).

Regards!
Steven

Hangfire Dynamic Retry Attempts

Hi Odin,
I really appreciate your work and the Hangfire teams work, I was trying to set the RecurringJob
RetryAttempts dynamically:
i.e.
RecurringJob.AddOrUpdate(entity.Id.ToString(), x => x.ExecuteRecurring(command.Url, command.Method, command.Headers, command.Body), command.Cron, MaxRetries = NUMBER);
Is it possible?

Many thanks

Implementation Question

HI,

kindly I want to know which classes in Hangfire source code that is responsible for keeping the background tasks a live against ASP.net app domain shutdown?

JobActivator issue when Hangfire upgraded from 0.9.0 to 1.0.2

Hi,
I have upgraded the version to 1.0.2 and getting error when setting JobActivator.Current
the compiler error is "Cannot convert source type Hangfire.SimpleInjectorJobActivator to target type Hangfire.JobActivator". Could you please suggest (SimpleInjector code added below)

JobActivator.Current = new SimpleInjectorJobActivator(container);

public class SimpleInjectorInitialize
{
///

Initialize the container and register it as MVC and Web API Dependency Resolver.

    public static void Initialize()
    {
        var container = new Container();
        InitializeContainer(container);

        container.RegisterMvcControllers(Assembly.GetExecutingAssembly());
        container.RegisterWebApiControllers(GlobalConfiguration.Configuration);        

        container.Verify();

        //Set dependency resolver for MVC
        DependencyResolver.SetResolver(new SimpleInjectorDependencyResolver(container));

        //Set dependency resolver for Web API
        GlobalConfiguration.Configuration.DependencyResolver = new SimpleInjectorWebApiDependencyResolver(container);

        //HangFire Initilisation
        JobActivator.Current = new SimpleInjectorJobActivator(container);
    }

    private static void InitializeContainer(Container container)
    {
        SimpleInjectorRegistration.RegisterServices(container);
        Service.SimpleInjectorRegistration.RegisterServices(container);
    }

}

Where is source for Hangfire.Web?

Hi there. Loving your library. Really simple to use.

I'm running into a situation with my asp.net app where multiple servers get created when I stop/start the site. I'd like to control this better and ensure that there's only a single server for my app.

I went to look at the source for AspNetBackgroundJobServer and discovered that I couldn't find the source for Hangfire.Web. Can you point me in the right direction?

Thanks!

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.