All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.connector.base.source.reader.RecordsWithSplitIds Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
/*
 * 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.flink.connector.base.source.reader;

import javax.annotation.Nullable;

import java.util.Set;

/** An interface for the elements passed from the fetchers to the source reader. */
public interface RecordsWithSplitIds {

    /**
     * Moves to the next split. This method is also called initially to move to the first split.
     * Returns null, if no splits are left.
     */
    @Nullable
    String nextSplit();

    /**
     * Gets the next record from the current split. Returns null if no more records are left in this
     * split.
     */
    @Nullable
    E nextRecordFromSplit();

    /**
     * Get the finished splits.
     *
     * @return the finished splits after this RecordsWithSplitIds is returned.
     */
    Set finishedSplits();

    /**
     * This method is called when all records from this batch have been emitted.
     *
     * 

Overriding this method gives implementations the opportunity to recycle/reuse this object, * which is a performance optimization that is important for cases where the record objects are * large or otherwise heavy to allocate. */ default void recycle() {} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy