Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yuta HIGUCHI
2014-09-30 15:58:08 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eeb75a09efbf52456c6b5dab5cbf29bb5247e788
eeb75a09
1 parent
fb46eaa4
cosmetics
Change-Id: If8dca73b034839f593e2b0ba0863c5ab26077ebd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
core/store/dist/src/main/java/org/onlab/onos/store/cluster/impl/package-info.java
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/AntiEntropyAdvertisement.java
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/AntiEntropyReply.java
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/package-info.java
core/store/dist/src/main/java/org/onlab/onos/store/cluster/impl/package-info.java
View file @
eeb75a0
/**
* Distributed cluster store and messaging subsystem implementation.
*/
package
org
.
onlab
.
onos
.
store
.
cluster
.
impl
;
\ No newline at end of file
package
org
.
onlab
.
onos
.
store
.
cluster
.
impl
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/AntiEntropyAdvertisement.java
View file @
eeb75a0
...
...
@@ -10,6 +10,8 @@ import com.google.common.collect.ImmutableMap;
/**
* Anti-Entropy advertisement message.
* <p>
* Message to advertise the information this node holds.
*
* @param <ID> ID type
*/
...
...
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/AntiEntropyReply.java
View file @
eeb75a0
...
...
@@ -11,6 +11,13 @@ import org.onlab.onos.store.device.impl.VersionedValue;
import
com.google.common.collect.ImmutableMap
;
import
com.google.common.collect.ImmutableSet
;
/**
* Anti-Entropy reply message.
* <p>
* Message to send in reply to advertisement or another reply.
* Suggest to the sender about the more up-to-date data this node has,
* and request for more recent data that the receiver has.
*/
public
class
AntiEntropyReply
<
ID
,
VALUE
>
extends
ClusterMessage
{
private
final
NodeId
sender
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/package-info.java
View file @
eeb75a0
/**
* Cluster messaging APIs for the use by the various distributed stores.
*/
package
org
.
onlab
.
onos
.
store
.
cluster
.
messaging
;
\ No newline at end of file
package
org
.
onlab
.
onos
.
store
.
cluster
.
messaging
;
...
...
Please
register
or
login
to post a comment