class EventMachine::Connection

def self.new(sig, *args)

Other tags:
    Private: -
def self.new(sig, *args)
  allocate.instance_eval do
    # Store signature
    @signature = sig
    # associate_callback_target sig
    # Call a superclass's #initialize if it has one
    initialize(*args)
    # post initialize callback
    post_init
    self
  end
end