Skip to content

Event

feral3gp.feral.event(value)

An event is the main form of communication between the components of a FERAL Simulation. It is used to transport any value from one worker to another. Events are sent and received via ports.

Source code in feral3gp/feral/core/util.py
35
36
37
38
39
40
41
def event(value):
    """
    An event is the main form of communication between the components of a FERAL Simulation.
    It is used to transport any value from one worker to another.
    Events are sent and received via ports.
    """
    return JValueEvent(value)