Sha256: 0dc49b9eb1778ad5d52aef4cf7a70f43828d361a78c69197f32c11ba7414de58
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# encoding: utf-8 require 'adhearsion/rayo/command_node' module Adhearsion module Rayo module Command class Join < CommandNode register :join, :core VALID_DIRECTIONS = [:duplex, :send, :recv].freeze # @return [String] the call ID to join attribute :call_uri alias :call_id= :call_uri= # @return [String] the mixer name to join attribute :mixer_name # @param [#to_sym] other the direction in which media should flow. Can be :duplex, :recv or :send attribute :direction, Symbol def direction=(other) if other && !VALID_DIRECTIONS.include?(other.to_sym) raise ArgumentError, "Invalid Direction (#{other.inspect}), use: #{VALID_DIRECTIONS*' '}" end super end # @return [#to_sym] the method by which to negotiate media attribute :media, Symbol def rayo_attributes { 'call-uri' => call_uri, 'mixer-name' => mixer_name, 'direction' => direction, 'media' => media } 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/command/join.rb |
adhearsion-3.0.0.beta2 | lib/adhearsion/rayo/command/join.rb |
adhearsion-3.0.0.beta1 | lib/adhearsion/rayo/command/join.rb |