Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

RavenDB job storage for Hangfire

NotificationsYou must be signed in to change notification settings

CadyIO/hangfire-ravendb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

PlatformMaster
WindowsBuild status
Linux / OS XTravis CI Build Status

Overview

RavenDB job storage for Hangfire

Usage

This is how you connect to a ravendb server (local or remote)

GlobalConfiguration.Configuration.UseRavenStorage("connection_string","database_name");

This is how you connect to an embedded ravendb instance

GlobalConfiguration.Configuration.UseEmbeddedRavenStorage();

To enqueue a background job you must have the following in the code somewhere at least once or the background job queue will not process

varclient=newBackgroundJobServer();\\thenyou candothis, which runs onceBackgroundJob.Enqueue(()=>Console.WriteLine("Background Job: Hello, world!"));

Delayed tasks

Scheduled background jobs are being executed only after given amount of time.

BackgroundJob.Schedule(()=>Console.WriteLine("Reliable!"),TimeSpan.FromDays(7));

Recurring tasks

Recurring jobs were never been simpler, just call the following method to perform any kind of recurring task using theCRON expressions.

RecurringJob.AddOrUpdate(()=>Console.WriteLine("Transparent!"),Cron.Daily);

Continuations

Continuations allow you to define complex workflows by chaining multiple background jobs together.

varid=BackgroundJob.Enqueue(()=>Console.WriteLine("Hello, "));BackgroundJob.ContinueWith(id,()=>Console.WriteLine("world!"));

License

Copyright © 2013-2014 Sergey Odinokov.

This program is free software: you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.

This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public Licensealong with this program. If not, seehttp://www.gnu.org/licenses/.

Known Bugs

Hangfire.Tests requires RavenDB.Client which requires .Net 4.5. Until RavenDB 4.0 is released, Hangfire.Tests cannot be included and run.

Packages

No packages published

Contributors8

Languages


[8]ページ先頭

©2009-2026 Movatter.jp