__init__(self,
run_id,
roslaunch_files,
is_core=False,
port=None,
local_only=False,
process_listeners=None,
verbose=False,
force_screen=False,
is_rostest=False,
roslaunch_strs=None,
num_workers=3,
timeout=None)
(Constructor)
| source code
|
x.__init__(...) initializes x; see help(type(x)) for signature
- Parameters:
run_id (str) - UUID of roslaunch session
roslaunch_files ([str]) - list of launch configuration files to load
is_core (bool), bool - if True, this launch is a roscore instance. This affects the
error behavior if a master is already running (i.e. it fails).
process_listeners ([roslaunch.pmon.ProcessListener]) - (optional) list of process listeners to register with process
monitor once launch is running
port (int) - (optional) override master port number from what is specified in
the master URI.
verbose (boolean) - (optional) print verbose output
force_screen (boolean) - (optional) force output of all nodes to screen
is_rostest (bool), bool - if True, this launch is a rostest instance. This affects
validation checks.
num_workers (int) - If this is the core, the number of worker-threads to use.
timeout (Float or None @throws RLException) - If this is the core, the socket-timeout to use.
- Overrides:
object.__init__
|