Sha256: ef694e5a47ef74245c31bf6aad7ac4ad198922393a16397e62c47349ee4620c4
Contents?: true
Size: 851 Bytes
Versions: 16
Compression:
Stored size: 851 Bytes
Contents
# encoding: utf-8 module Punchblock module Command class Accept < CommandNode register :accept, :core include HasHeaders ## # Create a Rayo accept command. This is equivalent to a SIP "180 Trying" # # @param [Hash] options # @option options [Array[Header], Hash, Optional] :headers SIP headers to attach to # the call. Can be either a hash of key-value pairs, or an array of # Header objects. # # @return [Command::Accept] a formatted Rayo accept command # # @example # Accept.new.to_xml # # returns: # <accept xmlns="urn:xmpp:rayo:1"/> def self.new(options = {}) super().tap do |new_node| new_node.headers = options[:headers] end end end # Accept end # Command end # Punchblock
Version data entries
16 entries across 16 versions & 1 rubygems