public NotificationSenderHostedService(
     IPendingEventsService pendingEventsService,
     BackgroundServiceOptions bgServiceOptions,
     PersistentHub hub)
 {
     _pendingEventsService = pendingEventsService;
     _bgServiceOptions     = bgServiceOptions;
     _hub             = hub;
     _refreshInterval = bgServiceOptions.RefreshSeconds;
 }
示例#2
0
 public ProductPropertiesChangedSignalRIntegrationEventHandler(IPendingEventsService pendingEventsService)
 {
     _pendingEventsService = pendingEventsService;
 }
示例#3
0
 public ProductAddedSignalRIntegrationEventHandler(IPendingEventsService pendingEventsService)
 {
     _pendingEventsService = pendingEventsService;
 }