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(TopicPartitionString topicPartitionstoreName, long startingOffset, long endOffset);

    void onBatchRestored(TopicPartitionString topicPartitionstoreName, long batchEndOffset, long numRestored);

    void onRestoreEnd(TopicPartitionString topicPartitionstoreName, long endOffset, long totalRestored);

}

...