pypushflow.StopActor.StopActor#

class pypushflow.StopActor.StopActor(parent=None, errorHandler=None, name='Stop actor', **kw)[source]#

Bases: ThreadCountingActor

join(timeout=7200)[source]#
property outData#
property pool_resources: int#
reset()[source]#
trigger(inData, **kwargs)#

This method

  • starts a scheduler thread (increments the thread counter),

  • calls ActorInterface._execute (actor-specific logic + triggering downstream actors),

  • ends the scheduler thread (decrements the thread counter).

When ActorInterface._execute is asynchronous, the scheduler thread needs to be deferred and executed as a callback once the asynchronous job completes.

Parameters:

inData (dict)