Method: Roby::Application#stop_shell_interface

Defined in:
lib/roby/app.rb

#stop_shell_interfaceObject

Stops a running shell interface

This is a no-op if no shell interface is currently running



2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
# File 'lib/roby/app.rb', line 2281

def stop_shell_interface
    if @shell_interface
        @shell_interface.close
        @shell_interface = nil
    end

    if @shell_interface_v2
        @shell_interface_v2.close
        @shell_interface_v2 = nil
    end
end