Exemple #1
0
 public NodeService(SuperComposeContext ctx, ConnectionService connectionService, NodeUpdaterService nodeUpdater, CryptoService crypto)
 {
     this.ctx = ctx;
     this.connectionService = connectionService;
     this.nodeUpdater       = nodeUpdater;
     this.crypto            = crypto;
 }
Exemple #2
0
 public AuthService(SuperComposeContext ctx, ILogger <AuthService> logger, IHttpClientFactory httpClientFactory,
                    CryptoService crypto, IDistributedCache cache)
 {
     this.ctx               = ctx;
     this.logger            = logger;
     this.httpClientFactory = httpClientFactory;
     this.crypto            = crypto;
     this.cache             = cache;
 }
Exemple #3
0
 public NodeUpdaterService(
     ILogger <NodeUpdaterService> logger,
     SuperComposeContext ctx,
     IConnectionMultiplexer multiplexer,
     ConnectionService connectionService,
     CryptoService cryptoService,
     ConnectionLogService connectionLog,
     ProxyClient proxyClient,
     IDistributedCache cache
     )
 {
     this.logger        = logger;
     this.ctx           = ctx;
     this.multiplexer   = multiplexer;
     this.cryptoService = cryptoService;
     this.connectionLog = connectionLog;
     this.proxyClient   = proxyClient;
     this.cache         = cache;
 }
 public CleanConnectionLogsJob(SuperComposeContext ctx)
 {
     this.ctx = ctx;
 }
 public ConnectionService(ILogger <ConnectionService> logger, SuperComposeContext ctx, CryptoService crypto)
 {
     this.logger = logger;
     this.ctx    = ctx;
     this.crypto = crypto;
 }
 public TenantDeploymentAuthorizationHandler(SuperComposeContext ctx)
 {
     this.ctx = ctx;
 }
 public ComposeService(SuperComposeContext ctx, NodeUpdaterService nodeUpdater)
 {
     this.ctx         = ctx;
     this.nodeUpdater = nodeUpdater;
 }
 public AuthController(AuthService authService, SuperComposeContext ctx)
 {
     this.authService = authService;
     this.ctx         = ctx;
 }
Exemple #9
0
 public TenantNodeAuthorizationHandler(SuperComposeContext ctx)
 {
     this.ctx = ctx;
 }
Exemple #10
0
 public Subscription(SuperComposeContext ctx, PubSubService pubSub)
 {
     this.ctx    = ctx;
     this.pubSub = pubSub;
 }
 public ClaimsTransformer(SuperComposeContext ctx)
 {
     this.ctx = ctx;
 }