aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/internal/Activation.java
blob: 1893ce2ea31d23a4468d97dfe94ec2fea88db864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.dse.internal;

import tools.refinery.store.tuple.Tuple;

public record Activation(TransformationRule transformationRule, Tuple activation) {
	public boolean fire() {
		return transformationRule.fireActivation(activation);
	}
}