All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fluxtion.runtime.dataflow.helpers.InternalEventDispatcher Maven / Gradle / Ivy

The newest version!
package com.fluxtion.runtime.dataflow.helpers;

import com.fluxtion.runtime.annotations.builder.Inject;
import com.fluxtion.runtime.callback.EventDispatcher;

public class InternalEventDispatcher {

    @Inject
    private final EventDispatcher eventDispatcher;

    public InternalEventDispatcher(EventDispatcher eventDispatcher) {
        this.eventDispatcher = eventDispatcher;
    }

    public InternalEventDispatcher() {
        this.eventDispatcher = null;
    }

    public void dispatchToGraph(Object event) {
        eventDispatcher.processReentrantEvent(event);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy