class Adhearsion::Call::CommandRegistry

@private

Public Instance Methods

terminate() click to toggle source
# File lib/adhearsion/call.rb, line 599
def terminate
  hangup = Hangup.new
  each { |command| command.response = hangup if command.requested? }
end