/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.beam.sdk.transforms.splittabledofn; import org.apache.beam.sdk.transforms.DoFn; /** * Manages concurrent access to the restriction and keeps track of its claimed part for a <a * href="https://s.apache.org/splittable-do-fn">splittable</a> {@link DoFn}. */ public interface RestrictionTracker<RestrictionT> { /** * Returns a restriction accurately describing the full range of work the current {@link * DoFn.ProcessElement} call will do, including already completed work. */ RestrictionT currentRestriction(); /** * Signals that the current {@link DoFn.ProcessElement} call should terminate as soon as possible. * Modifies {@link #currentRestriction}. Returns a restriction representing the rest of the work: * the old value of {@link #currentRestriction} is equivalent to the new value and the return * value of this method combined. Must be called at most once on a given object. */ RestrictionT checkpoint(); /** * Called by the runner after {@link DoFn.ProcessElement} returns. * * <p>Must throw an exception with an informative error message, if there is still any unclaimed * work remaining in the restriction. */ void checkDone() throws IllegalStateException; // TODO: Add the more general splitRemainderAfterFraction() and other methods. }