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

com.netgrif.application.engine.workflow.service.interfaces.IFieldActionsCacheService Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version
package com.netgrif.application.engine.workflow.service.interfaces;

import com.netgrif.application.engine.petrinet.domain.Function;
import com.netgrif.application.engine.petrinet.domain.PetriNet;
import com.netgrif.application.engine.petrinet.domain.dataset.logic.action.Action;
import com.netgrif.application.engine.workflow.domain.CachedFunction;
import groovy.lang.Closure;

import java.util.List;
import java.util.Map;

public interface IFieldActionsCacheService {

    void cachePetriNetFunctions(PetriNet petriNet);

    void reloadCachedFunctions(PetriNet petriNet);

    Closure getCompiledAction(Action action, boolean shouldRewriteCachedActions);

    List getCachedFunctions(List functions);

    Map> getNamespaceFunctionCache();

    void evaluateFunctions(List functions);

    void clearActionCache();

    void clearNamespaceFunctionCache();

    void clearFunctionCache();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy