X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardDataTreeMetadata.java;h=47d07c0892f4e73f5c03dd6a8bb617862aaedd8f;hb=refs%2Fchanges%2F26%2F39426%2F73;hp=d10a44d7ab34a8ef375d553ff05f0b6a41d2b678;hpb=4bbbd57c8f96e864d4353c1bdbce0dc068a6a57b;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTreeMetadata.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTreeMetadata.java index d10a44d7ab..47d07c0892 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTreeMetadata.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTreeMetadata.java @@ -31,6 +31,11 @@ abstract class ShardDataTreeMetadata> // Lifecycle events abstract void onTransactionCommitted(TransactionIdentifier txId); + + abstract void onHistoryCreated(LocalHistoryIdentifier historyId); + abstract void onHistoryClosed(LocalHistoryIdentifier historyId); + abstract void onHistoryPurged(LocalHistoryIdentifier historyId); + }