blob 3ae9e162f1be96e336b65ccc86dd9ef0810b0ef5 744 bytes (raw)
name: lib/rainbows/coolio/heartbeat.rb # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| | # -*- encoding: binary -*-
# :enddoc:
# This class handles the Unicorn fchmod heartbeat mechanism
# in Coolio-based concurrency models to prevent the master
# process from killing us unless we're blocked. This class
# will also detect and execute the graceful exit if triggered
# by SIGQUIT
class Rainbows::Coolio::Heartbeat < Coolio::TimerWatcher
KATO = Rainbows::Coolio::KATO
CONN = Rainbows::Coolio::CONN
Rainbows.config!(self, :keepalive_timeout)
Rainbows.at_quit { KATO.each_key { |client| client.timeout? }.clear }
def on_timer
if (ot = KEEPALIVE_TIMEOUT) >= 0
ot = Time.now - ot
KATO.delete_if { |client, time| time < ot and client.timeout? }
end
exit if (! Rainbows.tick && CONN.size <= 0)
end
end
|
debug log:
solving 3ae9e16 ...
found 3ae9e16 in https://yhbt.net/rainbows.git/
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://yhbt.net/rainbows.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).