Beispiel #1
0
 public IndexService(IUserIndexQueue userIndexQueue, GlobalIndexService indexService)
 {
     this._userIndexQueue = userIndexQueue;
     this._userIndexQueue.UsersToIndex.SubscribeAsync(OnNextAsync);
     this._globalIndexService = indexService;
 }
Beispiel #2
0
 public IndexService(IUserIndexQueue userIndexQueue)
 {
     this._userIndexQueue = userIndexQueue;
     this._userIndexQueue.UsersToIndex.SubscribeAsync(OnNextAsync);
 }