de.tsl2.nano.cursus.TimerExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.cursus Show documentation
Show all versions of tsl2.nano.cursus Show documentation
repeatable course/process (delta-processing-engine, event sourcing)
The newest version!
package de.tsl2.nano.cursus;
import java.util.Date;
/**
* from '01.01.2001' until '31.12.2001' each 2 DAY except [2,3] and [5-7] each 2 MONTH
*/
class TimerExpression {
static long expired(String expression, Date date) {
long diff = 0; //TODO: expression last diff before date
return diff;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy