Launch a global instance of this Application If a global instance already exists, this reinitializes and starts it
(cls, argv: ArgvType = None, **kwargs: t.Any)
| 1073 | |
| 1074 | @classmethod |
| 1075 | def launch_instance(cls, argv: ArgvType = None, **kwargs: t.Any) -> None: |
| 1076 | """Launch a global instance of this Application |
| 1077 | |
| 1078 | If a global instance already exists, this reinitializes and starts it |
| 1079 | """ |
| 1080 | app = cls.instance(**kwargs) |
| 1081 | app.initialize(argv) |
| 1082 | app.start() |
| 1083 | |
| 1084 | |
| 1085 | # ----------------------------------------------------------------------------- |
no test coverage detected