BUG-4084: Li:Save flows in operational based on barrier success
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / statistics / StatisticsContext.java
index 89aa9ecd599cf5aad5fa0db67ae94c7ad7622ed1..e7c54940ff82a330e824b819c88f668a2defea27 100644 (file)
@@ -12,6 +12,7 @@ import com.google.common.base.Optional;
 import com.google.common.util.concurrent.ListenableFuture;
 import io.netty.util.Timeout;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
+import org.opendaylight.openflowplugin.api.openflow.rpc.listener.ItemLifecycleListener;
 
 /**
  * Created by Martin Bobak <mbobak@cisco.com> on 27.2.2015.
@@ -29,4 +30,9 @@ public interface StatisticsContext extends RequestContextStack, AutoCloseable {
      * @return handle to currently scheduled statistics polling
      */
     Optional<Timeout> getPollTimeout();
+
+    /**
+     * @return dedicated item life cycle change listener (per device)
+     */
+    ItemLifecycleListener getItemLifeCycleListener();
 }