Added comments.

This commit is contained in:
Clinton Alexander 2016-08-02 17:27:18 +01:00
parent 9ef1bf0355
commit 72c4c2e5f7

View File

@ -28,8 +28,9 @@ interface NetworkMapCache {
val ratesOracleNodes: List<NodeInfo> val ratesOracleNodes: List<NodeInfo>
/** A list of all nodes the cache is aware of */ /** A list of all nodes the cache is aware of */
val partyNodes: List<NodeInfo> val partyNodes: List<NodeInfo>
/* Observer for changes to the cache */ /** Observer for additions to the cache */
val added: Observable<NodeInfo> val added: Observable<NodeInfo>
/** Observer for removal from the cache */
val removed: Observable<NodeInfo> val removed: Observable<NodeInfo>
/** /**