Skip to content

Commit 47ad598

Browse files
committed
Scheduler config
1 parent b00555a commit 47ad598

8 files changed

+73
-71
lines changed

README.md

+13-18
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ REDIS_TIMEOUT=0.2
6161

6262
## Defining Queues
6363

64-
Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of the key matches the name of the Queue.
64+
Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of
65+
the key matches the name of the Queue.
6566

6667
### Properties
6768

@@ -73,9 +74,15 @@ Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of t
7374

7475
```crystal
7576
JoobQ.configure do
76-
queue "queue:Email", 1, EmailJob
77-
queue "queue:Fail", 1, FailJob
78-
queue "queue:Test", 1, TestJob
77+
queue "single", 10, Job1
78+
queue "example", 10, ExampleJob | FailJob
79+
80+
# Scheduling Recurring Jobs
81+
scheduler do
82+
cron("*/1 * * * *") { # Do Something }
83+
cron("*/5 20-23 * * *") { # Do Something }
84+
every 1.hour, ExampleJob, x: 1
85+
end
7986
end
8087
```
8188

@@ -94,7 +101,7 @@ struct EmailJob
94101
@expires = 1.days.total_seconds.to_i
95102
96103
# Initialize as normal with or without named tuple arguments
97-
def initialize(email_address : String)
104+
def initialize(@email_address : String)
98105
end
99106
100107
def perform
@@ -116,19 +123,7 @@ end
116123
EmailJob.perform(within: 1.hour, email_address: "[email protected]")
117124
118125
# Recurring at given interval
119-
EmailJob.run(every: 1.second, x: 1)
120-
```
121-
122-
## Defining And Scheduling Recurring Jobs
123-
124-
```crystal
125-
module JoobQ
126-
scheduler.register do
127-
cron "5 4 * * *" { Somejob.perform }
128-
delay job_instance, for: 1.minute
129-
every 1.hour, EmailJob, email_address: "[email protected]"
130-
end
131-
end
126+
EmailJob.run(every: 1.second, email_address: "[email protected]")
132127
```
133128

134129
## Running JoobQ

shard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: joobq
2-
version: 0.2.5
2+
version: 0.2.6
33

44
authors:
55
- Elias J. Perez <[email protected]>

spec/jobs/jobs.cr

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
struct FailJob
2+
include JoobQ::Job
3+
4+
@queue = "example"
5+
@retries = 0
6+
7+
def initialize
8+
end
9+
10+
def perform
11+
raise "Bad"
12+
end
13+
end
14+
15+
struct ExampleJob
16+
include JoobQ::Job
17+
18+
property x : Int32
19+
@retries = 3
20+
21+
def initialize(@x : Int32)
22+
@queue = "example"
23+
end
24+
25+
def perform
26+
x + 1
27+
end
28+
end
29+
30+
struct Job1
31+
include JoobQ::Job
32+
@retries = 0
33+
@queue = "single"
34+
35+
def initialize
36+
end
37+
38+
def perform
39+
end
40+
end

spec/jobbq_spec.cr spec/joobq_spec.cr

+8
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,12 @@ describe JoobQ do
99
JoobQ["example"].should be_a JoobQ::Queue(ExampleJob | FailJob)
1010
JoobQ["single"].should be_a JoobQ::Queue(Job1)
1111
end
12+
13+
it "registers recurring jobs at specific time" do
14+
jobs = JoobQ.scheduler.jobs
15+
16+
jobs["*/1 * * * *"].should_not be_nil
17+
jobs["*/5 20-23 * * *"].should_not be_nil
18+
jobs[ExampleJob.name].should_not be_nil
19+
end
1220
end

spec/scheduler_spec.cr

-7
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ module JoobQ
3030
end
3131

3232
describe "#cron" do
33-
it "registers recurring jobs at specific time" do
34-
scheduler.register do
35-
cron("*/1 * * * *") { }
36-
cron("*/5 20-23 * * *") { }
37-
end
38-
end
39-
4033
it "schedules a new recurring job" do
4134
scheduler.cron("*/1 * * * *") { }
4235
end

spec/spec_helper.cr

+7-41
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,14 @@
11
require "spec"
22
require "../src/joobq"
3-
4-
struct FailJob
5-
include JoobQ::Job
6-
7-
@queue = "example"
8-
@retries = 0
9-
10-
def initialize
11-
end
12-
13-
def perform
14-
raise "Bad"
15-
end
16-
end
17-
18-
struct ExampleJob
19-
include JoobQ::Job
20-
21-
property x : Int32
22-
@retries = 3
23-
24-
def initialize(@x : Int32)
25-
@queue = "example"
26-
end
27-
28-
def perform
29-
x + 1
30-
end
31-
end
32-
33-
struct Job1
34-
include JoobQ::Job
35-
@retries = 0
36-
@queue = "single"
37-
38-
def initialize
39-
end
40-
41-
def perform
42-
end
43-
end
3+
require "./jobs/*"
444

455
JoobQ.configure do
466
queue "single", 10, Job1
477
queue "example", 10, ExampleJob | FailJob
8+
9+
scheduler do
10+
cron("*/1 * * * *") { }
11+
cron("*/5 20-23 * * *") { }
12+
every 1.hour, ExampleJob, x: 1
13+
end
4814
end

src/joobq/configure.cr

+4
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,9 @@ module JoobQ
1616
queues[{{name}}] = JoobQ::Queue({{kind.id}}).new({{name}}, {{workers}})
1717
{% end %}
1818
end
19+
20+
def scheduler
21+
with Scheduler.instance yield
22+
end
1923
end
2024
end

src/joobq/scheduler.cr

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ module JoobQ
1616
@periodic_jobs.clear
1717
end
1818

19-
def register(&block)
20-
with self yield
21-
end
22-
2319
def delay(job : JoobQ::Job, for till : Time::Span)
2420
REDIS.zadd(delayed_queue, till.from_now.to_unix_f, job.to_json)
2521
end

0 commit comments

Comments
 (0)