Exception: Skyfall::ReactorActiveError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/skyfall/errors.rb

Instance Method Summary collapse

Constructor Details

#initializeReactorActiveError

Returns a new instance of ReactorActiveError.



9
10
11
12
13
14
# File 'lib/skyfall/errors.rb', line 9

def initialize
  super(
    "An EventMachine reactor thread is already running, but it seems to have been launched by another Stream. " +
    "Skyfall doesn't currently support running two different Stream instances in a single process."
  )
end