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

io.hstream.ReaderBuilder Maven / Gradle / Ivy

package io.hstream;

/** A builder for {@link Reader}s. */
public interface ReaderBuilder {

  ReaderBuilder streamName(String streamName);

  ReaderBuilder shardId(long shardId);

  ReaderBuilder shardOffset(StreamShardOffset shardOffset);

  ReaderBuilder timeoutMs(int timeoutMs);

  ReaderBuilder readerId(String readerId);

  Reader build();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy