Exception: Async::Container::Kill

Inherits:
SignalException
  • Object
show all
Defined in:
lib/async/container/error.rb

Overview

Similar to Terminate, but represents ‘SIGKILL`.

Constant Summary collapse

SIGKILL =
Signal.list["KILL"]

Instance Method Summary collapse

Constructor Details

#initializeKill

Create a new kill error.



29
30
31
# File 'lib/async/container/error.rb', line 29

def initialize
  super(SIGKILL)
end