Ejemplo n.º 1
0
 public static bool RemoveAllPossibleInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(allByteValues, null));
 }
Ejemplo n.º 2
0
 public void SetGroup(byte[] groupsToRemove, byte[] groupsToAdd)
 {
     client.OpChangeGroups(groupsToRemove, groupsToAdd);
 }
Ejemplo n.º 3
0
 public static bool RemoveAllExistingInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(emptyByteArray, null));
 }
Ejemplo n.º 4
0
 public static bool AddAllPossibleInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(null, allByteValues));
 }
Ejemplo n.º 5
0
 public static bool AddAllExistingInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(null, emptyByteArray));
 }
Ejemplo n.º 6
0
 public static bool RemoveInterestGroups(this LoadBalancingClient client, byte[] groups)
 {
     return(client.OpChangeGroups(groups, null));
 }
Ejemplo n.º 7
0
 public static bool RemoveInterestGroup(this LoadBalancingClient client, byte group)
 {
     return(client.OpChangeGroups(new[] { group }, null));
 }
Ejemplo n.º 8
0
 public static bool AddInterestGroups(this LoadBalancingClient client, byte[] groups)
 {
     return(client.OpChangeGroups(null, groups));
 }
Ejemplo n.º 9
0
 public static bool AddInterestGroup(this LoadBalancingClient client, byte group)
 {
     return(client.OpChangeGroups(null, new[] { group }));
 }