Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
public interface BatchingStateRestoreCallback extends StateRestoreCallback {

   void restoreAll(Collection<KeyValue<byte[], byte []>> records);
}
 
 
public interface StateRestoreListener {

    void onRestoreStart(TopicPartition topicPartition, long startingOffset);

 
    void onBatchRestored(TopicPartition topicPartition, long batchEndOffset, long numRestored);

    void onRestoreEnd(TopicPartition topicPartition, long endOffset, long totalRestored);

}

...