Remove unneded RoutingTable time tracking
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / registry / gossip / BucketData.java
index 54e947123372259c036f3868d9cd625325452bd8..0dea3d1da4139614b0d1a47ed82685af84e248da 100644 (file)
@@ -9,6 +9,7 @@ package org.opendaylight.controller.remote.rpc.registry.gossip;
 
 import akka.actor.ActorRef;
 import java.util.Optional;
+import org.opendaylight.yangtools.concepts.Immutable;
 
 /**
  * Marker interface for data which is able to be held in a {@link Bucket}.
@@ -17,7 +18,7 @@ import java.util.Optional;
  *
  * @param <T> Concrete BucketData type
  */
-public interface BucketData<T extends BucketData<T>> {
+public interface BucketData<T extends BucketData<T>> extends Immutable {
     /**
      * Return the {@link ActorRef} which should be tracked as the authoritative source of this bucket's data.
      * The bucket will be invalidated should the actor be reported as Terminated.