async-job 0.7.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/async/job/backend/aggregate/server.rb +6 -0
- data/lib/async/job/backend/inline/server.rb +8 -0
- data/lib/async/job/backend/redis/server.rb +24 -4
- data/lib/async/job/buffer.rb +8 -0
- data/lib/async/job/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71fdcce6742cea5cfaeac68e800c56f1dbfa5ea6849503544c35912675874838
|
4
|
+
data.tar.gz: a607a76328c14cee24618479efd1d6924adc5634d7a89d21df0ccccbea78b1d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bc8ac06036c862eb827af97ef43764dd44036dc14cdb5f988a294fc2dbbac5f441b32d71cd6551aa3000c190de82105fcce65771ced7b67d08a8f24e598c872
|
7
|
+
data.tar.gz: 145098c24c1a115d018a4ecc8a1796aa295c4cfb85b8099c30c2e82c9a89fd31780e525015e799a12be807e748c824f299ac88677afdf0764f7b1594094b758e
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -36,17 +36,37 @@ module Async
|
|
36
36
|
@parent = parent || Async::Idler.new
|
37
37
|
end
|
38
38
|
|
39
|
+
def start!
|
40
|
+
return false if @task
|
41
|
+
|
42
|
+
@task = true
|
43
|
+
|
44
|
+
@parent.async(transient: true, annotation: self.class.name) do |task|
|
45
|
+
@task = task
|
46
|
+
|
47
|
+
while true
|
48
|
+
self.dequeue(task)
|
49
|
+
end
|
50
|
+
ensure
|
51
|
+
@task = nil
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
39
55
|
def start
|
40
|
-
|
56
|
+
@delegate&.start
|
57
|
+
|
41
58
|
# Start the delayed queue, which will move jobs to the ready queue when they are ready:
|
42
59
|
@delayed_queue.start(@ready_queue, resolution: @resolution)
|
43
60
|
|
44
61
|
# Start the processing queue, which will move jobs to the ready queue when they are abandoned:
|
45
62
|
@processing_queue.start
|
46
63
|
|
47
|
-
|
48
|
-
|
49
|
-
|
64
|
+
self.start!
|
65
|
+
end
|
66
|
+
|
67
|
+
def stop
|
68
|
+
@task&.stop
|
69
|
+
@delegate&.stop
|
50
70
|
end
|
51
71
|
|
52
72
|
def call(job)
|
data/lib/async/job/buffer.rb
CHANGED
data/lib/async/job/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: async-job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
requirements: []
|
119
|
-
rubygems_version: 3.5.
|
119
|
+
rubygems_version: 3.5.11
|
120
120
|
signing_key:
|
121
121
|
specification_version: 4
|
122
122
|
summary: A asynchronous job queue for Ruby.
|
metadata.gz.sig
CHANGED
Binary file
|