class Sponges::Hook

Attributes

_after_fork[RW]
_on_chld[RW]

Public Class Methods

after_fork() click to toggle source
# File lib/sponges/configuration.rb, line 46
def after_fork
  _after_fork.call if _after_fork.respond_to?(:call)
end
on_chld() click to toggle source
# File lib/sponges/configuration.rb, line 50
def on_chld
  _on_chld.call if _on_chld.respond_to?(:call)
end