< Summary

Class:Microsoft.Azure.EventHubs.ServiceFabricProcessor.Constants
Assembly:Microsoft.Azure.EventHubs.ServiceFabricProcessor
File(s):C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.ServiceFabricProcessor\src\Constants.cs
Covered lines:10
Uncovered lines:0
Coverable lines:10
Total lines:24
Line coverage:100% (10 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.cctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.ServiceFabricProcessor\src\Constants.cs

#LineLine coverage
 1// Copyright (c) Microsoft. All rights reserved.
 2// Licensed under the MIT license. See LICENSE file in the project root for full license information.using System;
 3
 4namespace Microsoft.Azure.EventHubs.ServiceFabricProcessor
 5{
 6    using System;
 7
 8    class Constants
 9    {
 210        internal static readonly int RetryCount = 5;
 11
 212        internal static readonly int FixedReceiverEpoch = 0;
 13
 214        internal static readonly TimeSpan MetricReportingInterval = TimeSpan.FromMinutes(1.0);
 215        internal static readonly string DefaultUserLoadMetricName = "CountOfPartitions";
 16
 217        internal static readonly TimeSpan ReliableDictionaryTimeout = TimeSpan.FromSeconds(10.0); // arbitrary
 218        internal static readonly string CheckpointDictionaryName = "EventProcessorCheckpointDictionary";
 219        internal static readonly string CheckpointPropertyVersion = "version";
 220        internal static readonly string CheckpointPropertyValid = "valid";
 221        internal static readonly string CheckpointPropertyOffsetV1 = "offsetV1";
 222        internal static readonly string CheckpointPropertySequenceNumberV1 = "sequenceNumberV1";
 23    }
 24}

Methods/Properties

.cctor()