Interface StateRestoreCallback

All Known Subinterfaces:
BatchingStateRestoreCallback
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface StateRestoreCallback
Restoration logic for log-backed state stores upon restart, it takes one record at a time from the logs to apply to the restoring state.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    restore(byte[] key, byte[] value)
     
  • Method Details

    • restore

      void restore(byte[] key, byte[] value)