• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / durabletask-extensions / 4431705642

pending completion
4431705642

push

github

Add support for registering activity methods from interfaces

2302 of 2777 relevant lines covered (82.9%)

142.05 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/LLL.DurableTask.AzureStorage/AzureStorageOrchestrationServiceFeaturesClient.cs
1
using System.Threading.Tasks;
2
using DurableTask.AzureStorage;
3
using LLL.DurableTask.Core;
4

5
namespace LLL.DurableTaskExtensions.AzureStorage
6
{
7
    public class AzureStorageOrchestrationServiceFeaturesClient : IOrchestrationServiceFeaturesClient
8
    {
9
        private readonly AzureStorageOrchestrationService _azureStorageOrchestrationService;
10

11
        public AzureStorageOrchestrationServiceFeaturesClient(
×
12
            AzureStorageOrchestrationService azureStorageOrchestrationService)
×
13
        {
14
            _azureStorageOrchestrationService = azureStorageOrchestrationService;
×
15
        }
16

17
        public Task<OrchestrationFeature[]> GetFeatures()
18
        {
19
            return Task.FromResult(new OrchestrationFeature[]
×
20
            {
×
21
                OrchestrationFeature.SearchByInstanceId,
×
22
                OrchestrationFeature.SearchByCreatedTime,
×
23
                OrchestrationFeature.SearchByStatus,
×
24
                OrchestrationFeature.Rewind
×
25
            });
×
26
        }
27
    }
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc