Esempio n. 1
0
 public TempService(IUnitOfWork unitOfWork, ICassandraService cassandraService, IGeolocationService geolocationService, IMessageService messageService)
 {
     this._unitOfWork         = unitOfWork;
     this._cassandraService   = cassandraService;
     this._geolocationService = geolocationService;
     this._messageService     = messageService;
 }
Esempio n. 2
0
 public ConsumeService(IUnitOfWork unitOfWork, IAnalyticsService analyticsService, ICassandraService cassandraService, IMessageService messageService)
 {
     this._unitOfWork       = unitOfWork;
     this._analyticsService = analyticsService;
     this._cassandraService = cassandraService;
     this._messageService   = messageService;
 }
Esempio n. 3
0
 public Runner(ILogger logger, ICounter counter, ICassandraService cassandraService,
               CassandraConfiguration cassandraConfiguration, BackupConfiguration backupConfiguration,
               BackupArchivingConfiguration backupArchivingConfiguration, IAlerter alerter,
               AlertingConfiguration alertingConfiguration, IPatternMatching patternMatching)
 {
     _logger                       = logger;
     _alerter                      = alerter;
     _counter                      = counter;
     _cassandraService             = cassandraService;
     _cassandraConfiguration       = cassandraConfiguration;
     _backupArchivingConfiguration = backupArchivingConfiguration;
     _backupConfiguration          = backupConfiguration;
     _alertingConfiguration        = alertingConfiguration;
     _patternMatching              = patternMatching;
 }
 public WebsocketService(IHubContext <SignalRHub> hub, ICassandraService cassandraService)
 {
     _hub = hub;
     _cassandraService = cassandraService;
     Console.WriteLine("In websocket constructor");
 }
Esempio n. 5
0
 public DataService(IUnitOfWork unitOfWork, ICassandraService cassandraService)
 {
     this._unitOfWork       = unitOfWork;
     this._cassandraService = cassandraService;
 }
 public PushEventToCassandraDb(ICassandraService cassandraService)
 {
     _cassandraService = cassandraService;
 }
Esempio n. 7
0
 public NotifyService(IUnitOfWork unitOfWork, IMessageService messageService, ICassandraService cassandraService)
 {
     this._unitOfWork       = unitOfWork;
     this._messageService   = messageService;
     this._cassandraService = cassandraService;
 }
Esempio n. 8
0
 public KeyspacesController(ICassandraService cassandraService)
 {
     _cassandraService = cassandraService;
 }
Esempio n. 9
0
 public HistoricTweetController(ICassandraService cassandraService)
 {
     _cassandraService = cassandraService;
 }