com.netgrif.application.engine.workflow.service.interfaces.IFieldActionsCacheService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
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