File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class Poller
1515
1616 # @return [Workhorse::Worker] The worker this poller serves
1717 attr_reader :worker
18-
18+
1919 # @return [Arel::Table] The jobs table for query building
2020 attr_reader :table
2121
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module Workhorse
1010 class Pool
1111 # @return [Mutex] Synchronization mutex for thread safety
1212 attr_reader :mutex
13-
13+
1414 # @return [Concurrent::AtomicFixnum] Thread-safe counter of active threads
1515 attr_reader :active_threads
1616
Original file line number Diff line number Diff line change @@ -24,22 +24,22 @@ class Worker
2424
2525 # @return [Array<Symbol>] The queues this worker processes
2626 attr_reader :queues
27-
27+
2828 # @return [Symbol] Current worker state (:initialized, :running, :shutdown)
2929 attr_reader :state
30-
30+
3131 # @return [Integer] Number of threads in the worker pool
3232 attr_reader :pool_size
33-
33+
3434 # @return [Integer] Polling interval in seconds
3535 attr_reader :polling_interval
36-
36+
3737 # @return [Mutex] Synchronization mutex for thread safety
3838 attr_reader :mutex
39-
39+
4040 # @return [Logger, nil] Optional logger instance
4141 attr_reader :logger
42-
42+
4343 # @return [Workhorse::Poller] The poller instance
4444 attr_reader :poller
4545
You can’t perform that action at this time.
0 commit comments