co.decodable.sdk.pipeline.DecodableStreamSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of decodable-pipeline-sdk Show documentation
Show all versions of decodable-pipeline-sdk Show documentation
A software development kit for implementing Apache Flink jobs and running them on Decodable
/*
* 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;
import co.decodable.sdk.pipeline.internal.DecodableStreamSourceBuilderImpl;
import co.decodable.sdk.pipeline.util.Incubating;
import org.apache.flink.api.connector.source.Source;
import org.apache.flink.api.java.typeutils.ResultTypeQueryable;
/**
* A {@link Source} which allows to retrieve the contents of a Decodable stream from within a Flink job.
*
* @param The data type of this stream
*/
@Incubating
public interface DecodableStreamSource
extends Source,
ResultTypeQueryable {
/** Returns a builder for creating a new {@link DecodableStreamSource}. */
public static DecodableStreamSourceBuilder builder() {
return new DecodableStreamSourceBuilderImpl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy