Sha256: 4a500b206b94dfbccaa375574cc5fdea7ab6feafe2a0c6172c7cc9984a31cc58

Contents?: true

Size: 345 Bytes

Versions: 3

Compression:

Stored size: 345 Bytes

Contents

# encoding: utf-8

module Adhearsion
  module Rayo
    module Connection
      class GenericConnection
        def initialize
          @event_handler = lambda { |event| raise 'No event handler set' }
        end

        def ready!
        end

        def not_ready!
        end

        def connected?
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
adhearsion-3.0.0.rc1 lib/adhearsion/rayo/connection/generic_connection.rb
adhearsion-3.0.0.beta2 lib/adhearsion/rayo/connection/generic_connection.rb
adhearsion-3.0.0.beta1 lib/adhearsion/rayo/connection/generic_connection.rb