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

io.hstream.BufferedProducer Maven / Gradle / Ivy

package io.hstream;

import java.io.Closeable;

/** The interface for the HStream BufferedProducer. */
public interface BufferedProducer extends Producer, Closeable {

  /** explicitly flush buffered records. */
  void flush();

  /** closes the buffered producer, will call flush() first */
  void close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy