aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/internal/action/AtomicAction.java
blob: 470278aea68f9a4b73f3378a658ffbcf4de1d0a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package tools.refinery.store.dse.internal.action;

import tools.refinery.store.model.Model;
import tools.refinery.store.tuple.Tuple;

public interface AtomicAction {

	void fire(Tuple activation);

	AtomicAction prepare(Model model);

	boolean equalsWithSubstitution(AtomicAction other);
}