Skip to content

Commit

Permalink
1) Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
blehnen committed Aug 3, 2016
1 parent f30c468 commit 712bf46
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ using (var jobContainer = new JobSchedulerContainer(QueueCreation))
scheduler.OnJobQueue += SchedulerOnOnJobEnQueue;
scheduler.OnJobNonFatalFailureQueue += SchedulerOnOnJobNonFatalFailureEnQueue;

scheduler.AddUpdateJob<SqlServerMessageQueueInit, SqlServerJobQueueCreation>("test job1", "sampleSQL",
scheduler.AddUpdateJob<SqlServerMessageQueueInit, SqlServerJobQueueCreation>("test job1",
"sampleSQL",
connectionStringSqlite,
"sec(0,5,10,15,20,25,30,35,40,45,50,55)",
(message, workerNotification) => Console.WriteLine(message.MessageId.Id.Value));
Expand All @@ -350,7 +351,8 @@ using (var jobContainer = new JobSchedulerContainer(QueueCreation))
"second(0,15,30,45)",
new LinqExpressionToRun("(message, workerNotification) => System.Threading.Thread.Sleep(20000)"));

scheduler.AddUpdateJob<SqLiteMessageQueueInit, SqliteJobQueueCreation>("test job3", "sampleSqlite",
scheduler.AddUpdateJob<SqLiteMessageQueueInit, SqliteJobQueueCreation>("test job3",
"sampleSqlite",
connectionString,
"sec(0,5,10,15,20,25,30,35,40,45,50,55)",
(message, workerNotification) => Console.WriteLine(message.MessageId.Id.Value));
Expand Down

0 comments on commit 712bf46

Please sign in to comment.