class Puma::Reactor

def wakeup!(client)

Stop monitoring the object if the block returns `true`.
'Wake up' a monitored object by calling the provided block.
def wakeup!(client)
  if @block.call client
    @selector.deregister client.to_io
    @timeouts.delete client
  end
end