Yuta HIGUCHI
Committed by Gerrit Code Review

GossipHostStore: allow location change + update

- Actively sync with peer on anti-entropy message
  to improve convergence speed
- Timestamp not only location
- Refresh timestamp on delta update

Might fix ONOS-436

Change-Id: I271f9af04b87d78124d055e79b93413deaf1fa3c
...@@ -20,9 +20,9 @@ import org.onosproject.store.cluster.messaging.MessageSubject; ...@@ -20,9 +20,9 @@ import org.onosproject.store.cluster.messaging.MessageSubject;
20 public final class GossipHostStoreMessageSubjects { 20 public final class GossipHostStoreMessageSubjects {
21 private GossipHostStoreMessageSubjects() {} 21 private GossipHostStoreMessageSubjects() {}
22 22
23 - public static final MessageSubject HOST_UPDATED 23 + public static final MessageSubject HOST_UPDATED_MSG
24 = new MessageSubject("peer-host-updated"); 24 = new MessageSubject("peer-host-updated");
25 - public static final MessageSubject HOST_REMOVED 25 + public static final MessageSubject HOST_REMOVED_MSG
26 = new MessageSubject("peer-host-removed"); 26 = new MessageSubject("peer-host-removed");
27 public static final MessageSubject HOST_ANTI_ENTROPY_ADVERTISEMENT 27 public static final MessageSubject HOST_ANTI_ENTROPY_ADVERTISEMENT
28 = new MessageSubject("host-enti-entropy-advertisement");; 28 = new MessageSubject("host-enti-entropy-advertisement");;
......