ListEventGenerator

digraph inheritancec4b4ec30b9 { rankdir=UD; ratio=compress; size="8.0, 12.0"; "EventGenerator" [color=dodgerblue1,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,tooltip="Base class capable of firing events"]; "Object" -> "EventGenerator" [arrowsize=0.5,style="setlinewidth(0.5)"]; "ListEventGenerator" [color=dodgerblue1,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,tooltip="Manage list events, detecting changes in the list"]; "EventGenerator" -> "ListEventGenerator" [arrowsize=0.5,style="setlinewidth(0.5)"]; "Object" [color=dodgerblue1,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded]; }
class ListEventGenerator(name, events_active=True)[source]

Bases: taurus.core.util.event.EventGenerator

Manage list events, detecting changes in the list

fireEvent(val)[source]

Notifies that a given event has arrived This function is protected inside with the object’s lock. Do NOT call this function when you have the lock acquired on this object.

Parameters:val (object) – event value