netsse.base.Buoy.add_operation ============================== .. py:method:: netsse.base.Buoy.add_operation(*args, ignore_msg: bool = False) Add an `Operation` instance to the list of operations of the platform. :param \*args: Operation to be added to the platform. :type \*args: Operation object :param ignore_msg: If `False`, messages are printed to inform about any changes made to the platform. If `True`, thoses messages are turned off. :type ignore_msg: bool, default False .. rubric:: Example >>> operation2 = netsse.base.Operation() >>> platform1.add_operation(operation2,ignore_msg=True)