}                                            // Dummy constructor

        public WebRpcCallbacksContainer(LoadBalancingClient client)
        {
        }                                                                      // 0x000000018074F020-0x000000018074F0A0
Exemplo n.º 2
0
 protected void OnDestroy()
 {
     this.Client = null; // will remove this SupportLogger as callback target
 }
        }                                               // Dummy constructor

        public ErrorInfoCallbacksContainer(LoadBalancingClient client)
        {
        }                                                                         // 0x0000000180737060-0x00000001807370E0
Exemplo n.º 4
0
 public PhotonClient(PresentationHandling pPresHandling)
 {
     presHandling             = pPresHandling;
     this.loadBalancingClient = new LoadBalancingClient();
     this.SubscribeToCallbacks();
 }
Exemplo n.º 5
0
 public static bool RemoveAllPossibleInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(allByteValues, null));
 }
Exemplo n.º 6
0
 public void BeforeEach()
 {
     _photonClient = Substitute.ForPartsOf <LoadBalancingClient>("", "", "", ConnectionProtocol.Udp);
     _photonClient.When(p => p.ConnectToRegionMaster(Arg.Any <string>())).DoNotCallBase();
 }
Exemplo n.º 7
0
 public static bool RemoveAllExistingInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(emptyByteArray, null));
 }
Exemplo n.º 8
0
 public static bool AddAllPossibleInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(null, allByteValues));
 }
Exemplo n.º 9
0
 public static bool AddAllExistingInterestGroups(this LoadBalancingClient client)
 {
     return(client.OpChangeGroups(null, emptyByteArray));
 }
Exemplo n.º 10
0
 public static bool RemoveInterestGroups(this LoadBalancingClient client, byte[] groups)
 {
     return(client.OpChangeGroups(groups, null));
 }
Exemplo n.º 11
0
 public static bool RemoveInterestGroup(this LoadBalancingClient client, byte group)
 {
     return(client.OpChangeGroups(new[] { group }, null));
 }
Exemplo n.º 12
0
 public static bool AddInterestGroups(this LoadBalancingClient client, byte[] groups)
 {
     return(client.OpChangeGroups(null, groups));
 }
Exemplo n.º 13
0
 public static bool AddInterestGroup(this LoadBalancingClient client, byte group)
 {
     return(client.OpChangeGroups(null, new[] { group }));
 }