aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/internal/action/AtomicAction.java
blob: 19de644a67758b0abcc111782fb5b35d33dac61e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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);
}