public OperationsServiceImpl(
     IMemoryStoreClientManager <IMemoryStoreClient> memoryStoreClientManager,
     PlayerAuthServiceClient playerAuthServiceClient)
 {
     _memoryStoreClientManager = memoryStoreClientManager;
     _playerAuthServiceClient  = playerAuthServiceClient;
 }
 public GatewayInternalServiceImpl(
     IMemoryStoreClientManager <IMemoryStoreClient> matchmakingMemoryStoreClientManager,
     IAnalyticsSender analytics = null)
 {
     _matchmakingMemoryStoreClientManager = matchmakingMemoryStoreClientManager;
     _project   = Environment.GetEnvironmentVariable("SPATIAL_PROJECT");
     _analytics = (analytics ?? new NullAnalyticsSender()).WithEventClass("match");
 }
Пример #3
0
 public GatewayServiceImpl(
     IMemoryStoreClientManager <IMemoryStoreClient> memoryStoreClientManager,
     PlayerAuthServiceClient playerAuthServiceClient, IAnalyticsSender analytics = null)
 {
     _memoryStoreClientManager = memoryStoreClientManager;
     _playerAuthServiceClient  = playerAuthServiceClient;
     _analytics = (analytics ?? new NullAnalyticsSender()).WithEventClass("match");
 }
Пример #4
0
 public PartyServiceImpl(IMemoryStoreClientManager <IMemoryStoreClient> memoryStoreClientManager,
                         IAnalyticsSender analytics = null)
 {
     _memoryStoreClientManager = memoryStoreClientManager;
     _analytics = (analytics ?? new NullAnalyticsSender()).WithEventClass("party");
 }
Пример #5
0
 public PartyServiceImpl(IMemoryStoreClientManager <IMemoryStoreClient> memoryStoreClientManager)
 {
     _memoryStoreClientManager = memoryStoreClientManager;
 }
Пример #6
0
 public GatewayInternalServiceImpl(
     IMemoryStoreClientManager <IMemoryStoreClient> matchmakingMemoryStoreClientManager)
 {
     _matchmakingMemoryStoreClientManager = matchmakingMemoryStoreClientManager;
 }
 public InviteServiceImpl(IMemoryStoreClientManager <IMemoryStoreClient> memoryStoreClientManager)
 {
     _memoryStoreClientManager = memoryStoreClientManager;
 }