public DeviceCommandPollController(ITimestampRepository timestampRepository,
     [Named("DeviceCommand.DeviceID")] ObjectWaiter commandByDeviceIdWaiter,
     [Named("DeviceCommand.CommandID")] ObjectWaiter commandByCommandIdWaiter)
 {
     _timestampRepository = timestampRepository;
     _commandByDeviceIdWaiter = commandByDeviceIdWaiter;
     _commandByCommandIdWaiter = commandByCommandIdWaiter;
 }
Exemplo n.º 2
0
 public WaiterHandle(ObjectWaiter waiter, Subscription subscription)
 {
     _waiter       = waiter;
     _subscription = subscription;
 }
Exemplo n.º 3
0
 public WaiterHandle(ObjectWaiter waiter, Subscription subscription)
 {
     _waiter = waiter;
     _subscription = subscription;
 }
 public DeviceNotificationPollController(ITimestampRepository timestampRepository,
     [Named("DeviceNotification.DeviceID")] ObjectWaiter notificationByDeviceIdWaiter)
 {
     _timestampRepository = timestampRepository;
     _notificationByDeviceIdWaiter = notificationByDeviceIdWaiter;
 }