< Summary

Class:Microsoft.Azure.EventHubs.Processor.EventProcessorHostActionStrings
Assembly:Microsoft.Azure.EventHubs.Processor
File(s):C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.Processor\src\EventProcessorHostActionStrings.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:25
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.Processor\src\EventProcessorHostActionStrings.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.
 3
 4namespace Microsoft.Azure.EventHubs.Processor
 5{
 6    internal static class EventProcessorHostActionStrings
 7    {
 08        internal static readonly string DownloadingLeases = "Downloading Leases";
 09        internal static readonly string CheckingLeases = "Checking Leases";
 010        internal static readonly string RenewingLease = "Renewing Lease";
 011        internal static readonly string ReleasingLease = "Releasing Lease";
 012        internal static readonly string StealingLease = "Stealing Lease";
 013        internal static readonly string CreatingLease = "Creating Lease";
 014        internal static readonly string ClosingEventProcessor = "Closing Event Processor";
 015        internal static readonly string CreatingCheckpoint = "Creating Checkpoint";
 016        internal static readonly string CreatingCheckpointStore = "Creating Checkpoint Store";
 017        internal static readonly string CreatingEventProcessor = "Creating Event Processor";
 018        internal static readonly string CreatingLeaseStore = "Creating Lease Store";
 019        internal static readonly string InitializingStores = "Initializing Stores";
 020        internal static readonly string OpeningEventProcessor = "Opening Event Processor";
 021        internal static readonly string PartitionManagerCleanup = "Partition Manager Cleanup";
 022        internal static readonly string PartitionManagerMainLoop = "Partition Manager Main Loop";
 023        internal static readonly string PartitionPumpManagement = "Managing Partition Pumps";
 24    }
 25}

Methods/Properties

.cctor()