@@ -61,7 +61,8 @@ REDIS_TIMEOUT=0.2
61
61
62
62
## Defining Queues
63
63
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.
65
66
66
67
### Properties
67
68
@@ -73,9 +74,15 @@ Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of t
73
74
74
75
``` crystal
75
76
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
79
86
end
80
87
```
81
88
@@ -94,7 +101,7 @@ struct EmailJob
94
101
@expires = 1.days.total_seconds.to_i
95
102
96
103
# Initialize as normal with or without named tuple arguments
97
- def initialize(email_address : String)
104
+ def initialize(@ email_address : String)
98
105
end
99
106
100
107
def perform
116
123
EmailJob.perform(within: 1.hour, email_address: "[email protected] ")
117
124
118
125
# 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] ")
132
127
```
133
128
134
129
## Running JoobQ
0 commit comments