Module: Punchblock::Connection

Extended by:
ActiveSupport::Autoload
Defined in:
lib/punchblock/connection.rb,
lib/punchblock/connection/xmpp.rb,
lib/punchblock/connection/asterisk.rb,
lib/punchblock/connection/connected.rb,
lib/punchblock/connection/freeswitch.rb,
lib/punchblock/connection/generic_connection.rb

Defined Under Namespace

Classes: Asterisk, Freeswitch, GenericConnection, RubyAMIStreamProxy, XMPP

Constant Summary collapse

Connected =
Class.new do
  def source
    nil
  end

  def client=(other)
    nil
  end

  def eql?(other)
    other.is_a? self.class
  end
  alias :== :eql?
end