Skip to content

Commit 62bb4a7

Browse files
committed
Merge pull request #4 from azutoolkit/updates
Adds adds run method
2 parents 6a1c47c + 8a7b36a commit 62bb4a7

File tree

4 files changed

+49
-26
lines changed

4 files changed

+49
-26
lines changed

README.md

+19-26
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# JoobQ
22

3-
![Crystal CI](https://github.com/eliasjpr/joobq/workflows/Crystal%20CI/badge.svg?branch=master) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/757ebd7d1db942da8eb9f8392415b1a6)](https://www.codacy.com/manual/eliasjpr/joobq?utm_source=github.com&utm_medium=referral&utm_content=eliasjpr/joobq&utm_campaign=Badge_Grade)
3+
![Crystal CI](https://github.com/eliasjpr/joobq/workflows/Crystal%20CI/badge.svg?branch=master)
44

55
JoobQ is a fast, efficient asynchronous reliable job queue scheduler library processing. Jobs are submitted
66
to a job queue, where they reside until they are able to be scheduled to run in a
77
compute environment.
88

9-
**Features:**
9+
#### Features:
1010

1111
- [x] Priority queues based on number of workers
1212
- [x] Reliable queue
@@ -41,6 +41,7 @@ shards install
4141
## Requirements
4242

4343
This project uses REDIS with the TimeSeries module loaded. The Redis TimeSeries is used to monitor stats of job execution the module is free for use and easy to configure. Follow the guidelines at [redistimeseries.io](https://oss.redislabs.com/redistimeseries/)
44+
4445
### Loading and Configuring Redis TimeSeries
4546

4647
Use **DUPLICATE POLICY FIRST** to ignore duplicate stats entries
@@ -73,31 +74,13 @@ Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of t
7374
- **Name:** `queue:email`
7475
- **Number Workers:** 10
7576

76-
```crystal
77-
require "joobq"
78-
```
79-
80-
**Environment variables**
81-
82-
```shell
83-
REDIS_HOST=localhost
84-
REDIS_PORT=6379
85-
REDIS_POOL_SIZE=50
86-
REDIS_TIMEOUT=0.2
87-
```
88-
89-
## Defining Queues
90-
91-
Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of the key matches the name of the Queue.
92-
93-
### Properties
94-
95-
- **Name:** `queue:email`
96-
- **Number Workers:** 10
77+
### Example
9778

9879
```crystal
9980
module JoobQ
100-
QUEUES = { "queue:email" => Queue(EmailJob).new("queue:email", 10)}
81+
QUEUES = { "queue:priority:high" => Queue(EmailJob).new("queue:priority:high", 20)}
82+
QUEUES = { "queue:priority:medium" => Queue(EmailJob).new("queue:priority:medium", 10)}
83+
QUEUES = { "queue:priority:low" => Queue(EmailJob).new("queue:priority:low", 2)}
10184
end
10285
```
10386

@@ -128,9 +111,19 @@ end
128111
### Executing Job
129112

130113
```crystal
131-
EmailJob.perform(email_address: "[email protected]")
132-
EmailJob.perform(within: 1.hour, email_address: "[email protected]")
114+
# Perform Immediately
115+
EmailJob.new(email_address: "[email protected]").perform
116+
117+
# Async - Adds to Queue
118+
EmailJob.perform(email_address: "[email protected]")
119+
120+
# Delayed
121+
EmailJob.perform(within: 1.hour, email_address: "[email protected]")
122+
123+
# Recurring at given interval
124+
EmailJob.run(every: 1.second, x: 1)
133125
```
126+
134127
## Defining And Scheduling Recurring Jobs
135128

136129
```crystal

spec/job_spec.cr

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
require "./spec_helper"
22

3+
class TestJob
4+
include JoobQ::Job
5+
getter x
6+
@queue = "example"
7+
8+
def initialize(@x : Int32 = 0)
9+
end
10+
11+
def perform
12+
@x += 1
13+
end
14+
end
15+
316
module JoobQ
417
describe Job do
518
it "performs jobs at later time" do
@@ -8,5 +21,11 @@ module JoobQ
821

922
REDIS.zcard(Sets::Delayed.to_s).should eq 1
1023
end
24+
25+
it "performs jobs every one second" do
26+
job = TestJob.run(every: 1.second, x: 1)
27+
sleep 3.seconds
28+
job.x.should eq 3
29+
end
1130
end
1231
end

src/joobq/job.cr

+9
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ module JoobQ
2525
JoobQ.scheduler.delay(job, within)
2626
job.jid
2727
end
28+
29+
# Allows for scheduling Jobs at an interval time span.
30+
#
31+
# ```crystal
32+
# TestJob.run(every: 1.second, x: 1)
33+
# ```
34+
def self.run(every : Time::Span, **args)
35+
JoobQ.scheduler.every every, self, **args
36+
end
2837
end
2938

3039
abstract def perform

src/joobq/scheduler.cr

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ module JoobQ
3434
spawn { job_instance.perform }
3535
end
3636
end
37+
38+
job_instance
3739
end
3840

3941
def cron(pattern, &block : ->)

0 commit comments

Comments
 (0)