module GxG::EventManager

Public Class Methods

manager_running?() click to toggle source
# File lib/gxg/gxg_events.rb, line 510
def self.manager_running?()
  result = false
  if $Dispatcher
    result = $Dispatcher.running?
  end
  result
end