hangfire Questions
2
Solved
Hangfire hangs if you try and delete a job that doesn't exist, i.e if jobId isn't in Hangfire.Job
BackgroundJob.Delete(jobId);
Is there any way of checking if a job exists before trying to delet...
1
During development of HangFire application with C# ASP.NET, and I decided to implement functionally where Admin can manage state of Server, jobs.
List item
Server Enable Disable state. Using ...
1
Solved
i am new to hangfire and looking for the solution which can solve the below case
take the data from the DB and convert this to CSV file. this should happen when ever the user insert the new reco...
Taenia asked 1/2, 2016 at 9:30
1
Solved
I have followed the documentation specified here to make the application always running and enable Service Auto-start. For configuration I used the documentation specified here and in this applicat...
1
Solved
I have developed an Hangfire application using MVC running in IIS, and it is working absolutely fine, till I saw the size of my SQL Server log file, which grew whopping 40 GB overnight!!
As per in...
1
I am looking to implement hangfire into my asp.net web api and asp.net MVC website projects.
The way I have structured my solution is as follows:
Solution - My Solution
1: Model - (Project contain...
1
See this example static class below.
public static class BackgroundTaskExecuter
{
public static void MethodA()
{
using (var service = IocManager.Instance.ResolveAsDisposable<IServiceA&...
Fulllength asked 16/12, 2015 at 17:27
4
Solved
I have a Web API service that I'm deploying to my various environments (using Octopus Deploy). It is supposed to do various tasks on startup, e.g. run any migration scripts required by Entity Frame...
Threecolor asked 29/11, 2015 at 14:8
2
Solved
I'm new to Hangfire, so probably I'm messing up somewhere. I have the Hangfire configured like in: https://github.com/HangfireIO/Hangfire#installation
but instead of:
config.UseSqlServerStorage(...
Convalescence asked 28/1, 2015 at 21:20
1
Solved
I just discovered that with HangFire you can have background jobs running in your .Net application but when I was testing its functionalities, I realized that the time in the method I added to a 1 ...
1
I have an MVC 5 application which uses Ninject and I am adding Hangfire to it.
When I have added Ninject, I have used the NinjectWebCommon nuget package because of its simplicity in the configurat...
Eley asked 16/6, 2015 at 0:21
0
I'm trying to track the progress of my Hangfire background jobs guided by article http://docs.hangfire.io/en/latest/background-processing/tracking-progress.html
Unfortunately the example given in ...
Vanwinkle asked 14/6, 2015 at 13:53
3
I'm trying to write a JobActivator for HangFire using ServiceStack IoC and I'm having trouble resolving from a type. I'm sure this will be an easy answer for someone with more experience with gener...
Magneto asked 21/4, 2015 at 13:57
1
I'm switching from Task.Run to Hangfire. In .NET 4.5+ Task.Run can return Task<TResult> which allows me to run tasks that return other than void. I can normally wait and get the result of my ...
Vyse asked 13/3, 2015 at 21:54
1
Solved
I am coding a MVC 5 internet application and am using HangFire for recurring tasks.
If I have a Monthly recurring task, how can I get the value of the next execution time?
Here is my code for the...
Thermotherapy asked 11/2, 2015 at 6:7
1
In Hangfire, what is the difference between a Background job and a recurring job? Because cron support is provided only in recurring job and not in background job?
2
Solved
I created a service with a RESTful API in ASP.NET, hosted in IIS. Inside this service, I would like to create an actor system with Akka.NET.
Upon creating the actor system:
var actorSystem = Acto...
1
Solved
I'm trying to create a simple Hangfire test but it's not working. Here's all the important code, and how I've configured it with the Hangire.Autofac . Not sure what I'm missing here. The exception ...
1
Solved
I have a MVC application that uses IoC with Unity and I have a DbContext implementation defined using the PerRequestLifetimeManager. This object is injected to controllers through Unit of Work impl...
Wilcox asked 31/8, 2014 at 15:31
© 2022 - 2024 — McMap. All rights reserved.