AbstractGroup
- class simframe.frame.AbstractGroup[source]
Bases:
objectThis is an abstract class that serves as template for other classes.
AbstractGrouphas a descriptive string, an owner and an updater. The owner is the parentFrameobject and is hidden. The updater is of typeHeartbeat.AbstractGrouphas anupdatemethod that is callingsystole,updater, anddiastoleof theHeartbeatobject, which manages the update ofAbstractGroup.AbstractGroupshould not be instanciated directly.- Attributes:
descriptionDescription of the instance.
updaterHeatbeatobject with instructions for updating the instance.
Methods
update(*args, **kwargs)Function to update the object.
Attributes Summary
Description of the instance.
Heatbeatobject with instructions for updating the instance.Methods Summary
update(*args, **kwargs)Function to update the object.
Attributes Documentation
- description
Description of the instance.
- updater
Heatbeatobject with instructions for updating the instance.
Methods Documentation
- update(*args, **kwargs)[source]
Function to update the object. Ths functions calls the heartbeat instance of the object.
- Parameters:
args (additional positional arguments)
kwargs (additional keyword arguments)
Notes
Positional arguments and keyword arguments are only passed to the
updater, NOT tosystoleanddiastole.