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

co.decodable.sdk.pipeline.internal.DecodableSourceSplitImpl Maven / Gradle / Ivy

Go to download

A software development kit for implementing Apache Flink jobs and running them on Decodable

There is a newer version: 1.0.0.Beta7
Show newest version
/*
 * SPDX-License-Identifier: Apache-2.0
 *
 * Copyright Decodable, Inc.
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package co.decodable.sdk.pipeline.internal;

import co.decodable.sdk.pipeline.DecodableSourceSplit;
import org.apache.flink.connector.kafka.source.split.KafkaPartitionSplit;

public class DecodableSourceSplitImpl implements DecodableSourceSplit {

  private final KafkaPartitionSplit delegate;

  public DecodableSourceSplitImpl(KafkaPartitionSplit delegate) {
    this.delegate = delegate;
  }

  @Override
  public String splitId() {
    return delegate.splitId();
  }

  public KafkaPartitionSplit getDelegate() {
    return delegate;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy