Class SourceBuilder.Stream<T>

java.lang.Object
com.hazelcast.jet.pipeline.SourceBuilder.Stream<T>
Type Parameters:
T - type of emitted objects
Enclosing class:
SourceBuilder<C>

public final class SourceBuilder.Stream<T>
extends Object
Since:
3.0
  • Method Details

    • fillBufferFn

      @Nonnull public <T_NEW> SourceBuilder.Stream<T_NEW> fillBufferFn​(@Nonnull BiConsumerEx<? super C,​? super SourceBuilder.SourceBuffer<T_NEW>> fillBufferFn)
      Sets the function that Jet will call whenever it needs more data from your source. The function receives the context object obtained from createFn and Jet's buffer object. It should add some items to the buffer, ideally those it can produce without making any blocking calls. On any given invocation the function may also choose not to add any items. Jet will automatically employ an exponential backoff strategy to avoid calling your function in a tight loop, if the previous call didn't add any items to the buffer.

      The given SourceBuilder.SourceBuffer isn't thread-safe, you shouldn't pass it to other threads. For example, you shouldn't add to it in a callback of an asynchronous operation.

      Type Parameters:
      T_NEW - type of the emitted items
      Parameters:
      fillBufferFn - function that fills the buffer with source data. It must be stateless.
      Returns:
      this builder with the item type reset to the one inferred from fillBufferFn
    • destroyFn

      @Nonnull public SourceBuilder.Stream<T> destroyFn​(@Nonnull ConsumerEx<? super C> pDestroyFn)
      Sets the function that Jet will call when it is done cleaning up after an execution. It gives you the opportunity to release any resources that your context object may be holding. Jet also calls this function when the user cancels or restarts the job.

      The function must be stateless.

    • distributed

      @Nonnull public SourceBuilder.Stream<T> distributed​(int preferredLocalParallelism)
      Declares that you're creating a distributed source. On each member of the cluster Jet will create as many processors as you specify with the preferredLocalParallelism parameter. If you call this, you must ensure that all the source processors are coordinated and not emitting duplicated data. The createFn can consult processorContext.totalParallelism() and processorContext.globalProcessorIndex(). Jet calls createFn exactly once with each globalProcessorIndex from 0 to totalParallelism - 1 and you can use this to make all the instances agree on which part of the data to emit.

      If you don't call this method, there will be only one processor instance running on an arbitrary member.

      Parameters:
      preferredLocalParallelism - the requested number of processors on each cluster member
    • createSnapshotFn

      @Nonnull public <S> SourceBuilder.FaultTolerant<SourceBuilder.Stream<T>,​S> createSnapshotFn​(@Nonnull FunctionEx<? super C,​? extends S> createSnapshotFn)
    • build

      @Nonnull public StreamSource<T> build()
      Builds and returns the unbounded stream source.