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

com.fluxtion.runtime.EventProcessor Maven / Gradle / Ivy

package com.fluxtion.runtime;

import com.fluxtion.runtime.lifecycle.Lifecycle;

import java.util.Map;

public interface EventProcessor> extends StaticEventProcessor, Lifecycle {

    default T newInstance() {
        throw new UnsupportedOperationException();
    }

    default T newInstance(Map contextMap) {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy