Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Aug 7, 2023
1 parent 58e9a0e commit 76168c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/org/jgroups/protocols/relay/Topology.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ public static class Members implements SizeStreamable {
public Members() {}
public Members(String site) {this.site=site;}

public List<MemberInfo> joined() {return joined;}
public List<Address> left() {return left;}

public Members addJoined(MemberInfo mi) {
if(this.joined == null)
this.joined=new ArrayList<>();
Expand Down

0 comments on commit 76168c5

Please sign in to comment.