class DebuggerXml::Vim::ControlCommandProcessor

Public Class Methods

new(*args) click to toggle source
# File lib/debugger_xml/vim/control_command_processor.rb, line 7
def initialize(*args)
  super(*args)
  @mutex = Mutex.new
end

Private Instance Methods

process_command(*args) click to toggle source
# File lib/debugger_xml/vim/control_command_processor.rb, line 14
def process_command(*args)
  @mutex.synchronize do
    super(*args)
    @interface.send_response
  end
end