Exception: Async::Container::Kill
- Inherits:
-
SignalException
- Object
- SignalException
- Async::Container::Kill
- 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
-
#initialize ⇒ Kill
constructor
Create a new kill error.
Constructor Details
#initialize ⇒ Kill
Create a new kill error.
29 30 31 |
# File 'lib/async/container/error.rb', line 29 def initialize super(SIGKILL) end |