org.optaplanner.constraint.streams.bavet.common.TupleLifecycle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-constraint-streams-bavet Show documentation
Show all versions of optaplanner-constraint-streams-bavet Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains implementation of Constraint streams (Bavet).
package org.optaplanner.constraint.streams.bavet.common;
public interface TupleLifecycle {
static TupleLifecycle ofLeft(LeftTupleLifecycle leftTupleLifecycle) {
return new LeftTupleLifecycleImpl<>(leftTupleLifecycle);
}
static TupleLifecycle ofRight(RightTupleLifecycle rightTupleLifecycle) {
return new RightTupleLifecycleImpl<>(rightTupleLifecycle);
}
void insert(Tuple_ tuple);
void update(Tuple_ tuple);
void retract(Tuple_ tuple);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy