class Celluloid::ExitEvent
An actor has exited for the given reason
Attributes
actor[R]
reason[R]
Public Class Methods
new(actor, reason = nil)
click to toggle source
# File lib/celluloid/system_events.rb, line 78 def initialize(actor, reason = nil) @actor = actor @reason = reason end