module Async::Messaging

Constants

VERSION

Public Class Methods

setup(&block) click to toggle source
# File lib/async-messaging/setup.rb, line 5
def setup(&block)
  if block_given?
    block.call @@setup_config
  else
    @@setup_config
  end
  #yield self if block_given?
end