/* * SPDX-FileCopyrightText: 2023 The Refinery Authors * * SPDX-License-Identifier: EPL-2.0 */ package tools.refinery.viatra.runtime; @FunctionalInterface public interface CancellationToken { CancellationToken NONE = () -> {}; void checkCancelled(); }