BUG-5280: add {Create,Close,Purge}LocalHistoryPayload
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ShardDataTreeMetadata.java
index c0c3d6cbb0a584b1523473d2baeb01a12f96e499..47d07c0892f4e73f5c03dd6a8bb617862aaedd8f 100644 (file)
@@ -32,7 +32,10 @@ abstract class ShardDataTreeMetadata<T extends ShardDataTreeSnapshotMetadata<T>>
     // Lifecycle events
     abstract void onTransactionCommitted(TransactionIdentifier txId);
 
+    abstract void onHistoryCreated(LocalHistoryIdentifier historyId);
+
     abstract void onHistoryClosed(LocalHistoryIdentifier historyId);
 
     abstract void onHistoryPurged(LocalHistoryIdentifier historyId);
+
 }