Class: Fluent::Plugin::HttpInput::KeepaliveManager

Inherits:
Coolio::TimerWatcher
  • Object
show all
Defined in:
lib/fluent/plugin/in_http.rb

Instance Method Summary collapse

Constructor Details

#initialize(timeout) ⇒ KeepaliveManager

Returns a new instance of KeepaliveManager.



149
150
151
152
153
# File 'lib/fluent/plugin/in_http.rb', line 149

def initialize(timeout)
  super(1, true)
  @cons = {}
  @timeout = timeout.to_i
end

Instance Method Details

#add(sock) ⇒ Object



155
156
157
# File 'lib/fluent/plugin/in_http.rb', line 155

def add(sock)
  @cons[sock] = sock
end

#delete(sock) ⇒ Object



159
160
161
# File 'lib/fluent/plugin/in_http.rb', line 159

def delete(sock)
  @cons.delete(sock)
end

#on_timerObject



163
164
165
166
167
168
169
# File 'lib/fluent/plugin/in_http.rb', line 163

def on_timer
  @cons.each_pair {|sock,val|
    if sock.step_idle > @timeout
      sock.close
    end
  }
end