Exemple #1
0
            public CloudMessageProcessor(CloudEndpoint endpoint, bool trackDeviceState)
            {
                this.cloudEndpoint    = Preconditions.CheckNotNull(endpoint);
                this.trackDeviceState = trackDeviceState;

                if (!trackDeviceState)
                {
                    this.retryableExceptions.Add(typeof(DeviceInvalidStateException));
                }
            }
Exemple #2
0
 public CloudMessageProcessor(CloudEndpoint endpoint)
 {
     this.cloudEndpoint = Preconditions.CheckNotNull(endpoint);
 }