X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2FPersistentDataProvider.java;h=1d676fa4a6577f7ff00fef4359fde56f485db3eb;hb=d7c9a8ccfcb57f005490a226803d094289997ef9;hp=b4f08c0394b38c9ef88772760b084ff5dd7db6df;hpb=4e696d9795fe7eef40369c05c340d137394126f3;p=controller.git diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/PersistentDataProvider.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/PersistentDataProvider.java index b4f08c0394..1d676fa4a6 100644 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/PersistentDataProvider.java +++ b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/PersistentDataProvider.java @@ -33,6 +33,11 @@ public class PersistentDataProvider implements DataPersistenceProvider { persistentActor.persist(entry, procedure); } + @Override + public void persistAsync(T entry, Procedure procedure) { + persistentActor.persistAsync(entry, procedure); + } + @Override public void saveSnapshot(Object snapshot) { persistentActor.saveSnapshot(snapshot);