puma 3.12.6 → 6.3.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puma might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/History.md +1806 -451
- data/LICENSE +23 -20
- data/README.md +217 -65
- data/bin/puma-wild +3 -9
- data/docs/architecture.md +59 -21
- data/docs/compile_options.md +55 -0
- data/docs/deployment.md +69 -58
- data/docs/fork_worker.md +31 -0
- data/docs/images/puma-connection-flow-no-reactor.png +0 -0
- data/docs/images/puma-connection-flow.png +0 -0
- data/docs/images/puma-general-arch.png +0 -0
- data/docs/jungle/README.md +9 -0
- data/{tools → docs}/jungle/rc.d/README.md +1 -1
- data/{tools → docs}/jungle/rc.d/puma +2 -2
- data/docs/kubernetes.md +66 -0
- data/docs/nginx.md +2 -2
- data/docs/plugins.md +22 -12
- data/docs/rails_dev_mode.md +28 -0
- data/docs/restart.md +47 -22
- data/docs/signals.md +13 -11
- data/docs/stats.md +142 -0
- data/docs/systemd.md +94 -120
- data/docs/testing_benchmarks_local_files.md +150 -0
- data/docs/testing_test_rackup_ci_files.md +36 -0
- data/ext/puma_http11/PumaHttp11Service.java +2 -2
- data/ext/puma_http11/ext_help.h +1 -1
- data/ext/puma_http11/extconf.rb +61 -3
- data/ext/puma_http11/http11_parser.c +103 -117
- data/ext/puma_http11/http11_parser.h +2 -2
- data/ext/puma_http11/http11_parser.java.rl +22 -38
- data/ext/puma_http11/http11_parser.rl +3 -3
- data/ext/puma_http11/http11_parser_common.rl +6 -6
- data/ext/puma_http11/mini_ssl.c +389 -99
- data/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
- data/ext/puma_http11/org/jruby/puma/Http11.java +108 -116
- data/ext/puma_http11/org/jruby/puma/Http11Parser.java +84 -99
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +248 -92
- data/ext/puma_http11/puma_http11.c +49 -57
- data/lib/puma/app/status.rb +71 -49
- data/lib/puma/binder.rb +244 -150
- data/lib/puma/cli.rb +38 -34
- data/lib/puma/client.rb +388 -244
- data/lib/puma/cluster/worker.rb +180 -0
- data/lib/puma/cluster/worker_handle.rb +97 -0
- data/lib/puma/cluster.rb +261 -243
- data/lib/puma/commonlogger.rb +21 -14
- data/lib/puma/configuration.rb +116 -88
- data/lib/puma/const.rb +154 -104
- data/lib/puma/control_cli.rb +115 -70
- data/lib/puma/detect.rb +33 -2
- data/lib/puma/dsl.rb +764 -134
- data/lib/puma/error_logger.rb +113 -0
- data/lib/puma/events.rb +16 -112
- data/lib/puma/io_buffer.rb +42 -5
- data/lib/puma/jruby_restart.rb +2 -59
- data/lib/puma/json_serialization.rb +96 -0
- data/lib/puma/launcher/bundle_pruner.rb +104 -0
- data/lib/puma/launcher.rb +184 -133
- data/lib/puma/log_writer.rb +147 -0
- data/lib/puma/minissl/context_builder.rb +93 -0
- data/lib/puma/minissl.rb +263 -70
- data/lib/puma/null_io.rb +18 -1
- data/lib/puma/plugin/systemd.rb +90 -0
- data/lib/puma/plugin/tmp_restart.rb +3 -1
- data/lib/puma/plugin.rb +7 -13
- data/lib/puma/rack/builder.rb +9 -11
- data/lib/puma/rack/urlmap.rb +2 -0
- data/lib/puma/rack_default.rb +21 -4
- data/lib/puma/reactor.rb +93 -315
- data/lib/puma/request.rb +671 -0
- data/lib/puma/runner.rb +94 -69
- data/lib/puma/sd_notify.rb +149 -0
- data/lib/puma/server.rb +327 -772
- data/lib/puma/single.rb +20 -74
- data/lib/puma/state_file.rb +45 -8
- data/lib/puma/thread_pool.rb +146 -92
- data/lib/puma/util.rb +22 -10
- data/lib/puma.rb +60 -5
- data/lib/rack/handler/puma.rb +116 -90
- data/tools/Dockerfile +16 -0
- data/tools/trickletest.rb +0 -1
- metadata +54 -32
- data/ext/puma_http11/io_buffer.c +0 -155
- data/lib/puma/accept_nonblock.rb +0 -23
- data/lib/puma/compat.rb +0 -14
- data/lib/puma/convenient.rb +0 -25
- data/lib/puma/daemon_ext.rb +0 -33
- data/lib/puma/delegation.rb +0 -13
- data/lib/puma/java_io_buffer.rb +0 -47
- data/lib/puma/rack/backports/uri/common_193.rb +0 -33
- data/lib/puma/tcp_logger.rb +0 -41
- data/tools/jungle/README.md +0 -19
- data/tools/jungle/init.d/README.md +0 -61
- data/tools/jungle/init.d/puma +0 -421
- data/tools/jungle/init.d/run-puma +0 -18
- data/tools/jungle/upstart/README.md +0 -61
- data/tools/jungle/upstart/puma-manager.conf +0 -31
- data/tools/jungle/upstart/puma.conf +0 -69
- /data/{tools → docs}/jungle/rc.d/puma.conf +0 -0
data/lib/puma/reactor.rb
CHANGED
@@ -1,347 +1,125 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'puma/util'
|
4
|
-
require 'puma/minissl'
|
5
|
-
|
6
3
|
module Puma
|
7
|
-
|
8
|
-
|
9
|
-
#
|
10
|
-
#
|
11
|
-
# If read buffering is not done, and no other read buffering is performed (such as by an application server
|
12
|
-
# such as nginx) then the application would be subject to a slow client attack.
|
13
|
-
#
|
14
|
-
# Each Puma "worker" process has its own Reactor. For example if you start puma with `$ puma -w 5` then
|
15
|
-
# it will have 5 workers and each worker will have it's own reactor.
|
16
|
-
#
|
17
|
-
# For a graphical representation of how the reactor works see [architecture.md](https://github.com/puma/puma/blob/master/docs/architecture.md#connection-pipeline).
|
18
|
-
#
|
19
|
-
# ## Reactor Flow
|
20
|
-
#
|
21
|
-
# A request comes into a `Puma::Server` instance, it is then passed to a `Puma::Reactor` instance.
|
22
|
-
# The reactor stores the request in an array and calls `IO.select` on the array in a loop.
|
4
|
+
class UnsupportedBackend < StandardError; end
|
5
|
+
|
6
|
+
# Monitors a collection of IO objects, calling a block whenever
|
7
|
+
# any monitored object either receives data or times out, or when the Reactor shuts down.
|
23
8
|
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
# have a full header and body then the reactor passes the request to a thread pool.
|
28
|
-
# Once in a thread pool, a "worker thread" can run the the application's Ruby code against the request.
|
9
|
+
# The waiting/wake up is performed with nio4r, which will use the appropriate backend (libev,
|
10
|
+
# Java NIO or just plain IO#select). The call to `NIO::Selector#select` will
|
11
|
+
# 'wakeup' any IO object that receives data.
|
29
12
|
#
|
30
|
-
#
|
31
|
-
#
|
13
|
+
# This class additionally tracks a timeout for every added object,
|
14
|
+
# and wakes up any object when its timeout elapses.
|
32
15
|
#
|
33
|
-
#
|
34
|
-
# of this logic lives.
|
16
|
+
# The implementation uses a Queue to synchronize adding new objects from the internal select loop.
|
35
17
|
class Reactor
|
36
|
-
|
37
|
-
|
38
|
-
#
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
# Once a request is fully formed (header and body are received)
|
46
|
-
# it will be passed to the `app_pool`.
|
47
|
-
def initialize(server, app_pool)
|
48
|
-
@server = server
|
49
|
-
@events = server.events
|
50
|
-
@app_pool = app_pool
|
51
|
-
|
52
|
-
@mutex = Mutex.new
|
18
|
+
# Create a new Reactor to monitor IO objects added by #add.
|
19
|
+
# The provided block will be invoked when an IO has data available to read,
|
20
|
+
# its timeout elapses, or when the Reactor shuts down.
|
21
|
+
def initialize(backend, &block)
|
22
|
+
require 'nio'
|
23
|
+
valid_backends = [:auto, *::NIO::Selector.backends]
|
24
|
+
unless valid_backends.include?(backend)
|
25
|
+
raise ArgumentError.new("unsupported IO selector backend: #{backend} (available backends: #{valid_backends.join(', ')})")
|
26
|
+
end
|
53
27
|
|
54
|
-
|
55
|
-
@
|
56
|
-
@input = []
|
57
|
-
@sleep_for = DefaultSleepFor
|
28
|
+
@selector = ::NIO::Selector.new(NIO::Selector.backends.delete(backend))
|
29
|
+
@input = Queue.new
|
58
30
|
@timeouts = []
|
59
|
-
|
60
|
-
@sockets = [@ready]
|
31
|
+
@block = block
|
61
32
|
end
|
62
33
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
# connected to `@trigger` object. When `@trigger` is written to, then the loop
|
70
|
-
# will break on `IO.select` and return an array.
|
71
|
-
#
|
72
|
-
# ## When a request is added:
|
73
|
-
#
|
74
|
-
# When the `add` method is called, an instance of `Puma::Client` is added to the `@input` array.
|
75
|
-
# Next the `@ready` pipe is "woken" by writing a string of `"*"` to `@trigger`.
|
76
|
-
#
|
77
|
-
# When that happens, the internal loop stops blocking at `IO.select` and returns a reference
|
78
|
-
# to whatever "woke" it up. On the very first loop, the only thing in `sockets` is `@ready`.
|
79
|
-
# When `@trigger` is written-to, the loop "wakes" and the `ready`
|
80
|
-
# variable returns an array of arrays that looks like `[[#<IO:fd 10>], [], []]` where the
|
81
|
-
# first IO object is the `@ready` object. This first array `[#<IO:fd 10>]`
|
82
|
-
# is saved as a `reads` variable.
|
83
|
-
#
|
84
|
-
# The `reads` variable is iterated through. In the case that the object
|
85
|
-
# is the same as the `@ready` input pipe, then we know that there was a `trigger` event.
|
86
|
-
#
|
87
|
-
# If there was a trigger event, then one byte of `@ready` is read into memory. In the case of the first request,
|
88
|
-
# the reactor sees that it's a `"*"` value and the reactor adds the contents of `@input` into the `sockets` array.
|
89
|
-
# The while then loop continues to iterate again, but now the `sockets` array contains a `Puma::Client` instance in addition
|
90
|
-
# to the `@ready` IO object. For example: `[#<IO:fd 10>, #<Puma::Client:0x3fdc1103bee8 @ready=false>]`.
|
91
|
-
#
|
92
|
-
# Since the `Puma::Client` in this example has data that has not been read yet,
|
93
|
-
# the `IO.select` is immediately able to "wake" and read from the `Puma::Client`. At this point the
|
94
|
-
# `ready` output looks like this: `[[#<Puma::Client:0x3fdc1103bee8 @ready=false>], [], []]`.
|
95
|
-
#
|
96
|
-
# Each element in the first entry is iterated over. The `Puma::Client` object is not
|
97
|
-
# the `@ready` pipe, so the reactor checks to see if it has the fully header and body with
|
98
|
-
# the `Puma::Client#try_to_finish` method. If the full request has been sent,
|
99
|
-
# then the request is passed off to the `@app_pool` thread pool so that a "worker thread"
|
100
|
-
# can pick up the request and begin to execute application logic. This is done
|
101
|
-
# via `@app_pool << c`. The `Puma::Client` is then removed from the `sockets` array.
|
102
|
-
#
|
103
|
-
# If the request body is not present then nothing will happen, and the loop will iterate
|
104
|
-
# again. When the client sends more data to the socket the `Puma::Client` object will
|
105
|
-
# wake up the `IO.select` and it can again be checked to see if it's ready to be
|
106
|
-
# passed to the thread pool.
|
107
|
-
#
|
108
|
-
# ## Time Out Case
|
109
|
-
#
|
110
|
-
# In addition to being woken via a write to one of the sockets the `IO.select` will
|
111
|
-
# periodically "time out" of the sleep. One of the functions of this is to check for
|
112
|
-
# any requests that have "timed out". At the end of the loop it's checked to see if
|
113
|
-
# the first element in the `@timeout` array has exceed it's allowed time. If so,
|
114
|
-
# the client object is removed from the timeout aray, a 408 response is written.
|
115
|
-
# Then it's connection is closed, and the object is removed from the `sockets` array
|
116
|
-
# that watches for new data.
|
117
|
-
#
|
118
|
-
# This behavior loops until all the objects that have timed out have been removed.
|
119
|
-
#
|
120
|
-
# Once all the timeouts have been processed, the next duration of the `IO.select` sleep
|
121
|
-
# will be set to be equal to the amount of time it will take for the next timeout to occur.
|
122
|
-
# This calculation happens in `calculate_sleep`.
|
123
|
-
def run_internal
|
124
|
-
sockets = @sockets
|
125
|
-
|
126
|
-
while true
|
127
|
-
begin
|
128
|
-
ready = IO.select sockets, nil, nil, @sleep_for
|
129
|
-
rescue IOError => e
|
130
|
-
Thread.current.purge_interrupt_queue if Thread.current.respond_to? :purge_interrupt_queue
|
131
|
-
if sockets.any? { |socket| socket.closed? }
|
132
|
-
STDERR.puts "Error in select: #{e.message} (#{e.class})"
|
133
|
-
STDERR.puts e.backtrace
|
134
|
-
sockets = sockets.reject { |socket| socket.closed? }
|
135
|
-
retry
|
136
|
-
else
|
137
|
-
raise
|
138
|
-
end
|
139
|
-
end
|
140
|
-
|
141
|
-
if ready and reads = ready[0]
|
142
|
-
reads.each do |c|
|
143
|
-
if c == @ready
|
144
|
-
@mutex.synchronize do
|
145
|
-
case @ready.read(1)
|
146
|
-
when "*"
|
147
|
-
sockets += @input
|
148
|
-
@input.clear
|
149
|
-
when "c"
|
150
|
-
sockets.delete_if do |s|
|
151
|
-
if s == @ready
|
152
|
-
false
|
153
|
-
else
|
154
|
-
s.close
|
155
|
-
true
|
156
|
-
end
|
157
|
-
end
|
158
|
-
when "!"
|
159
|
-
return
|
160
|
-
end
|
161
|
-
end
|
162
|
-
else
|
163
|
-
# We have to be sure to remove it from the timeout
|
164
|
-
# list or we'll accidentally close the socket when
|
165
|
-
# it's in use!
|
166
|
-
if c.timeout_at
|
167
|
-
@mutex.synchronize do
|
168
|
-
@timeouts.delete c
|
169
|
-
end
|
170
|
-
end
|
171
|
-
|
172
|
-
begin
|
173
|
-
if c.try_to_finish
|
174
|
-
@app_pool << c
|
175
|
-
sockets.delete c
|
176
|
-
end
|
177
|
-
|
178
|
-
# Don't report these to the lowlevel_error handler, otherwise
|
179
|
-
# will be flooding them with errors when persistent connections
|
180
|
-
# are closed.
|
181
|
-
rescue ConnectionError
|
182
|
-
c.write_500
|
183
|
-
c.close
|
184
|
-
|
185
|
-
sockets.delete c
|
186
|
-
|
187
|
-
# SSL handshake failure
|
188
|
-
rescue MiniSSL::SSLError => e
|
189
|
-
@server.lowlevel_error(e, c.env)
|
190
|
-
|
191
|
-
ssl_socket = c.io
|
192
|
-
addr = ssl_socket.peeraddr.last
|
193
|
-
cert = ssl_socket.peercert
|
194
|
-
|
195
|
-
c.close
|
196
|
-
sockets.delete c
|
197
|
-
|
198
|
-
@events.ssl_error @server, addr, cert, e
|
199
|
-
|
200
|
-
# The client doesn't know HTTP well
|
201
|
-
rescue HttpParserError => e
|
202
|
-
@server.lowlevel_error(e, c.env)
|
203
|
-
|
204
|
-
c.write_400
|
205
|
-
c.close
|
206
|
-
|
207
|
-
sockets.delete c
|
208
|
-
|
209
|
-
@events.parse_error @server, c.env, e
|
210
|
-
rescue StandardError => e
|
211
|
-
@server.lowlevel_error(e, c.env)
|
212
|
-
|
213
|
-
c.write_500
|
214
|
-
c.close
|
215
|
-
|
216
|
-
sockets.delete c
|
217
|
-
end
|
218
|
-
end
|
219
|
-
end
|
220
|
-
end
|
221
|
-
|
222
|
-
unless @timeouts.empty?
|
223
|
-
@mutex.synchronize do
|
224
|
-
now = Time.now
|
225
|
-
|
226
|
-
while @timeouts.first.timeout_at < now
|
227
|
-
c = @timeouts.shift
|
228
|
-
c.write_408 if c.in_data_phase
|
229
|
-
c.close
|
230
|
-
sockets.delete c
|
231
|
-
|
232
|
-
break if @timeouts.empty?
|
233
|
-
end
|
234
|
-
|
235
|
-
calculate_sleep
|
236
|
-
end
|
34
|
+
# Run the internal select loop, using a background thread by default.
|
35
|
+
def run(background=true)
|
36
|
+
if background
|
37
|
+
@thread = Thread.new do
|
38
|
+
Puma.set_thread_name "reactor"
|
39
|
+
select_loop
|
237
40
|
end
|
41
|
+
else
|
42
|
+
select_loop
|
238
43
|
end
|
239
44
|
end
|
240
45
|
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
@
|
247
|
-
|
46
|
+
# Add a new client to monitor.
|
47
|
+
# The object must respond to #timeout and #timeout_at.
|
48
|
+
# Returns false if the reactor is already shut down.
|
49
|
+
def add(client)
|
50
|
+
@input << client
|
51
|
+
@selector.wakeup
|
52
|
+
true
|
53
|
+
rescue ClosedQueueError, IOError # Ignore if selector is already closed
|
54
|
+
false
|
248
55
|
end
|
249
56
|
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
STDERR.puts e.backtrace
|
257
|
-
retry
|
258
|
-
ensure
|
259
|
-
@trigger.close
|
260
|
-
@ready.close
|
261
|
-
end
|
57
|
+
# Shutdown the reactor, blocking until the background thread is finished.
|
58
|
+
def shutdown
|
59
|
+
@input.close
|
60
|
+
begin
|
61
|
+
@selector.wakeup
|
62
|
+
rescue IOError # Ignore if selector is already closed
|
262
63
|
end
|
64
|
+
@thread&.join
|
263
65
|
end
|
264
66
|
|
265
|
-
|
266
|
-
# sleep for in the main reactor loop when no sockets are being written to.
|
267
|
-
#
|
268
|
-
# The values kept in `@timeouts` are sorted so that the first timeout
|
269
|
-
# comes first in the array. When there are no timeouts the default timeout is used.
|
270
|
-
#
|
271
|
-
# Otherwise a sleep value is set that is the same as the amount of time it
|
272
|
-
# would take for the first element to time out.
|
273
|
-
#
|
274
|
-
# If that value is in the past, then a sleep value of zero is used.
|
275
|
-
def calculate_sleep
|
276
|
-
if @timeouts.empty?
|
277
|
-
@sleep_for = DefaultSleepFor
|
278
|
-
else
|
279
|
-
diff = @timeouts.first.timeout_at.to_f - Time.now.to_f
|
67
|
+
private
|
280
68
|
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
69
|
+
def select_loop
|
70
|
+
close_selector = true
|
71
|
+
begin
|
72
|
+
until @input.closed? && @input.empty?
|
73
|
+
# Wakeup any registered object that receives incoming data.
|
74
|
+
# Block until the earliest timeout or Selector#wakeup is called.
|
75
|
+
timeout = (earliest = @timeouts.first) && earliest.timeout
|
76
|
+
@selector.select(timeout) {|mon| wakeup!(mon.value)}
|
77
|
+
|
78
|
+
# Wakeup all objects that timed out.
|
79
|
+
timed_out = @timeouts.take_while {|t| t.timeout == 0}
|
80
|
+
timed_out.each { |c| wakeup! c }
|
81
|
+
|
82
|
+
unless @input.empty?
|
83
|
+
until @input.empty?
|
84
|
+
client = @input.pop
|
85
|
+
register(client) if client.io_ok?
|
86
|
+
end
|
87
|
+
@timeouts.sort_by!(&:timeout_at)
|
88
|
+
end
|
285
89
|
end
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
# reactor it cannot be added directly to the `sockets` aray, because
|
298
|
-
# the `IO.select` will not be watching for it yet.
|
299
|
-
#
|
300
|
-
# Instead what needs to happen is that `IO.select` needs to be woken up,
|
301
|
-
# the contents of `@input` added to the `sockets` array, and then
|
302
|
-
# another call to `IO.select` needs to happen. Since the `Puma::Client`
|
303
|
-
# object can be read immediately, it does not block, but instead returns
|
304
|
-
# right away.
|
305
|
-
#
|
306
|
-
# This behavior is accomplished by writing to `@trigger` which wakes up
|
307
|
-
# the `IO.select` and then there is logic to detect the value of `*`,
|
308
|
-
# pull the contents from `@input` and add them to the sockets array.
|
309
|
-
#
|
310
|
-
# If the object passed in has a timeout value in `timeout_at` then
|
311
|
-
# it is added to a `@timeouts` array. This array is then re-arranged
|
312
|
-
# so that the first element to timeout will be at the front of the
|
313
|
-
# array. Then a value to sleep for is derived in the call to `calculate_sleep`
|
314
|
-
def add(c)
|
315
|
-
@mutex.synchronize do
|
316
|
-
@input << c
|
317
|
-
@trigger << "*"
|
318
|
-
|
319
|
-
if c.timeout_at
|
320
|
-
@timeouts << c
|
321
|
-
@timeouts.sort! { |a,b| a.timeout_at <=> b.timeout_at }
|
322
|
-
|
323
|
-
calculate_sleep
|
90
|
+
rescue StandardError => e
|
91
|
+
STDERR.puts "Error in reactor loop escaped: #{e.message} (#{e.class})"
|
92
|
+
STDERR.puts e.backtrace
|
93
|
+
|
94
|
+
# NoMethodError may be rarely raised when calling @selector.select, which
|
95
|
+
# is odd. Regardless, it may continue for thousands of calls if retried.
|
96
|
+
# Also, when it raises, @selector.close also raises an error.
|
97
|
+
if NoMethodError === e
|
98
|
+
close_selector = false
|
99
|
+
else
|
100
|
+
retry
|
324
101
|
end
|
325
102
|
end
|
103
|
+
# Wakeup all remaining objects on shutdown.
|
104
|
+
@timeouts.each(&@block)
|
105
|
+
@selector.close if close_selector
|
326
106
|
end
|
327
107
|
|
328
|
-
#
|
329
|
-
def
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
end
|
108
|
+
# Start monitoring the object.
|
109
|
+
def register(client)
|
110
|
+
@selector.register(client.to_io, :r).value = client
|
111
|
+
@timeouts << client
|
112
|
+
rescue ArgumentError
|
113
|
+
# unreadable clients raise error when processed by NIO
|
335
114
|
end
|
336
115
|
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
116
|
+
# 'Wake up' a monitored object by calling the provided block.
|
117
|
+
# Stop monitoring the object if the block returns `true`.
|
118
|
+
def wakeup!(client)
|
119
|
+
if @block.call client
|
120
|
+
@selector.deregister client.to_io
|
121
|
+
@timeouts.delete client
|
342
122
|
end
|
343
|
-
|
344
|
-
@thread.join
|
345
123
|
end
|
346
124
|
end
|
347
125
|
end
|