class documentation
class ConsoleBase:
Known subclasses: acme.plugins.runtime.Console.Console, acme.plugins.runtime.MinimalConsole.MinimalConsole
Base class for console plugins.
| Method | do |
Check if the console should start with the text UI. |
| Method | run |
This method must be implemented by a derived class. It runs the main console loop. This is a blocking call that will run until the console is stopped. |
| Method | run |
Open the text UI. |
| Method | shutdown |
Shutdown the Console instance. |
| Method | shutdown |
Shutdown the CSE. Confirm shutdown before actually doing that. |
| Method | stop |
Stop the console loop. |
| Class Variable | text |
Injected TextUI instance. |
Check if the console should start with the text UI.
| Returns | |
bool | True if the console should start with the text UI, False otherwise. |
overridden in
acme.plugins.runtime.Console.Console, acme.plugins.runtime.MinimalConsole.MinimalConsoleThis method must be implemented by a derived class. It runs the main console loop. This is a blocking call that will run until the console is stopped.