cosmetics
Change-Id: If8dca73b034839f593e2b0ba0863c5ab26077ebd
Showing
4 changed files
with
9 additions
and
0 deletions
... | @@ -10,6 +10,8 @@ import com.google.common.collect.ImmutableMap; | ... | @@ -10,6 +10,8 @@ import com.google.common.collect.ImmutableMap; |
10 | 10 | ||
11 | /** | 11 | /** |
12 | * Anti-Entropy advertisement message. | 12 | * Anti-Entropy advertisement message. |
13 | + * <p> | ||
14 | + * Message to advertise the information this node holds. | ||
13 | * | 15 | * |
14 | * @param <ID> ID type | 16 | * @param <ID> ID type |
15 | */ | 17 | */ | ... | ... |
... | @@ -11,6 +11,13 @@ import org.onlab.onos.store.device.impl.VersionedValue; | ... | @@ -11,6 +11,13 @@ import org.onlab.onos.store.device.impl.VersionedValue; |
11 | import com.google.common.collect.ImmutableMap; | 11 | import com.google.common.collect.ImmutableMap; |
12 | import com.google.common.collect.ImmutableSet; | 12 | import com.google.common.collect.ImmutableSet; |
13 | 13 | ||
14 | +/** | ||
15 | + * Anti-Entropy reply message. | ||
16 | + * <p> | ||
17 | + * Message to send in reply to advertisement or another reply. | ||
18 | + * Suggest to the sender about the more up-to-date data this node has, | ||
19 | + * and request for more recent data that the receiver has. | ||
20 | + */ | ||
14 | public class AntiEntropyReply<ID, VALUE> extends ClusterMessage { | 21 | public class AntiEntropyReply<ID, VALUE> extends ClusterMessage { |
15 | 22 | ||
16 | private final NodeId sender; | 23 | private final NodeId sender; | ... | ... |
-
Please register or login to post a comment