public CloudMessageProcessor(CloudEndpoint endpoint, bool trackDeviceState) { this.cloudEndpoint = Preconditions.CheckNotNull(endpoint); this.trackDeviceState = trackDeviceState; if (!trackDeviceState) { this.retryableExceptions.Add(typeof(DeviceInvalidStateException)); } }
public CloudMessageProcessor(CloudEndpoint endpoint) { this.cloudEndpoint = Preconditions.CheckNotNull(endpoint); }