Skip to content

FAQ

How to update stepDP from the repository?

Make sure you have the correct version number in your pom.xml file. Run the "clean install" goal from maven. To do so, run the folling command in a shell:

mvn clean install

You can also trigger this goal within the IDE

I want tokens to be processed by a rule only/not after a certain time (timeout)

Each condition has a minimum and maximum token age for the tokens it operates on. You can set this value (in milliseconds) to adapt the behaviour of the condition of the rule.

In diesem Beispiel reagiert die GreetingRule nur auf Tokens, die älter als 1 Sekunde sind, aber nicht älter wie 10 Sekunden.

GreetingRule.getCondition().setMinTokenAge( 1 * 1000);
GreetingRule.getCondition().setMaxTokenAge(10 * 1000);

This is practical, for example, to process tokens that could not be fused in another way after a certain timeout.