├── .azuredevops └── dependabot.yml ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── new-release-template.md ├── dependabot.yml ├── policies │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ ├── E2ETest.yml │ ├── codeQL.yml │ ├── smoketest-dotnet-isolated-v4.yml │ ├── smoketest-java8-v4.yml │ ├── smoketest-mssql-inproc-v4.yml │ ├── smoketest-netherite-inproc-v4.yml │ ├── smoketest-node20-v4.yml │ ├── smoketest-python37-v4.yml │ ├── validate-build-analyzer.yml │ ├── validate-build-e2e.yml │ └── validate-build.yml ├── .gitignore ├── .stylecop ├── GlobalSuppressions.cs └── stylecop.json ├── CONTRIBUTING.md ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── README.md ├── SECURITY.md ├── WebJobs.Extensions.DurableTask.sln ├── azure-pipelines-analyzer-release.yml ├── azure-pipelines-release-dotnet-isolated.yml ├── azure-pipelines-release-nightly.yml ├── azure-pipelines-release.yml ├── azure-pipelines.yml ├── docfx ├── _exported_templates │ └── default │ │ ├── ManagedReference.common.js │ │ ├── ManagedReference.extension.js │ │ ├── ManagedReference.html.primary.js │ │ ├── ManagedReference.html.primary.tmpl │ │ ├── RestApi.common.js │ │ ├── RestApi.extension.js │ │ ├── RestApi.html.primary.js │ │ ├── RestApi.html.primary.tmpl │ │ ├── common.js │ │ ├── conceptual.extension.js │ │ ├── conceptual.html.primary.js │ │ ├── conceptual.html.primary.tmpl │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── gulpfile.js │ │ ├── layout │ │ └── _master.tmpl │ │ ├── logo.svg │ │ ├── partials │ │ ├── _affix.liquid │ │ ├── _breadcrumb.liquid │ │ ├── _footer.liquid │ │ ├── _head.liquid │ │ ├── _logo.liquid │ │ ├── _navbar.liquid │ │ ├── _scripts.liquid │ │ ├── _toc.liquid │ │ ├── affix.tmpl.partial │ │ ├── breadcrumb.tmpl.partial │ │ ├── class.header.tmpl.partial │ │ ├── class.tmpl.partial │ │ ├── classSubtitle.tmpl.partial │ │ ├── customMREFContent.tmpl.partial │ │ ├── enum.tmpl.partial │ │ ├── footer.tmpl.partial │ │ ├── head.tmpl.partial │ │ ├── li.tmpl.partial │ │ ├── logo.tmpl.partial │ │ ├── namespace.tmpl.partial │ │ ├── namespaceSubtitle.tmpl.partial │ │ ├── navbar.tmpl.partial │ │ ├── rest.child.tmpl.partial │ │ ├── rest.tmpl.partial │ │ ├── scripts.tmpl.partial │ │ ├── searchResults.tmpl.partial │ │ ├── title.tmpl.partial │ │ └── toc.tmpl.partial │ │ ├── search-stopwords.json │ │ ├── styles │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── lunr.min.js │ │ ├── main.css │ │ ├── main.js │ │ └── search-worker.js │ │ ├── toc.extension.js │ │ ├── toc.html.js │ │ ├── toc.html.tmpl │ │ └── token.json ├── build.cmd ├── docfx.json ├── favicon.ico ├── index.md └── toc.yml ├── docs ├── _config.yml ├── api │ ├── Microsoft.Azure.WebJobs.ActivityTriggerAttribute.html │ ├── Microsoft.Azure.WebJobs.DurableActivityContext.html │ ├── Microsoft.Azure.WebJobs.DurableActivityContextBase.html │ ├── Microsoft.Azure.WebJobs.DurableOrchestrationClient.html │ ├── Microsoft.Azure.WebJobs.DurableOrchestrationClientBase.html │ ├── Microsoft.Azure.WebJobs.DurableOrchestrationContext.html │ ├── Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.html │ ├── Microsoft.Azure.WebJobs.DurableOrchestrationStatus.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.DurableTaskExtension.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.DurableTaskJobHostConfigurationExtensions.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.DurableTaskOptions.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.HttpManagementPayload.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.IConnectionStringResolver.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.ILifeCycleNotificationHelper.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.OrchestrationStatusQueryResult.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.WebJobsConnectionStringProvider.html │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.html │ ├── Microsoft.Azure.WebJobs.FunctionFailedException.html │ ├── Microsoft.Azure.WebJobs.HttpManagementPayload.html │ ├── Microsoft.Azure.WebJobs.OrchestrationClientAttribute.html │ ├── Microsoft.Azure.WebJobs.OrchestrationRuntimeStatus.html │ ├── Microsoft.Azure.WebJobs.OrchestrationTriggerAttribute.html │ ├── Microsoft.Azure.WebJobs.PurgeHistoryResult.html │ ├── Microsoft.Azure.WebJobs.RetryOptions.html │ ├── Microsoft.Azure.WebJobs.StartOrchestrationArgs.html │ ├── Microsoft.Azure.WebJobs.html │ └── toc.html ├── favicon.ico ├── files │ ├── DFSampleApp.zip │ └── VSDFSampleApp.zip ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ └── search-worker.js ├── toc.html └── xrefmap.yml ├── eng ├── ci │ ├── code-mirror.yml │ ├── official-build.yml │ └── publish.yml └── templates │ └── build.yml ├── global.json ├── nuget.config ├── nuget.exe ├── pending_docs.md ├── release_notes.md ├── samples ├── Directory.Packages.props ├── Samples.sln ├── VSSample.Tests │ ├── HelloSequenceActivityTests.cs │ ├── HelloSequenceOrchestratorTests.cs │ ├── HttpStartTests.cs │ └── VSSample.Tests.csproj ├── csx │ ├── E1_HelloSequence │ │ ├── function.json │ │ └── run.csx │ ├── E1_SayHello │ │ ├── function.json │ │ └── run.csx │ ├── E2_BackupSiteContent │ │ ├── function.json │ │ └── run.csx │ ├── E2_CopyFileToBlob │ │ ├── function.json │ │ └── run.csx │ ├── E2_GetFileList │ │ ├── function.json │ │ └── run.csx │ ├── E3_GetIsClear │ │ ├── function.json │ │ └── run.csx │ ├── E3_Monitor │ │ ├── function.json │ │ └── run.csx │ ├── E3_SendGoodWeatherAlert │ │ ├── function.json │ │ └── run.csx │ ├── E4_SendSmsChallenge │ │ ├── function.json │ │ └── run.csx │ ├── E4_SmsPhoneVerification │ │ ├── function.json │ │ └── run.csx │ ├── HttpStart │ │ ├── function.json │ │ └── run.csx │ ├── HttpSyncStart │ │ ├── function.json │ │ └── run.csx │ ├── ManualStart │ │ ├── function.json │ │ └── run.csx │ ├── README.md │ ├── extensions.csproj │ ├── host.json │ ├── local.settings.json │ └── shared │ │ ├── Location.csx │ │ ├── MonitorRequest.csx │ │ └── WeatherUnderground.csx ├── distributed-tracing │ ├── v1 │ │ ├── FunctionAppCorrelation.sln │ │ ├── FunctionAppCorrelation │ │ │ ├── .gitignore │ │ │ ├── Counter.cs │ │ │ ├── EntityOrchestration.cs │ │ │ ├── EternalOrchestrations.cs │ │ │ ├── ExternalEvent.cs │ │ │ ├── FanOutFanIn.cs │ │ │ ├── FunctionAppCorrelation.csproj │ │ │ ├── HttpEndpoints.cs │ │ │ ├── Monitoring.cs │ │ │ ├── MultiLayerOrchestrationWithRetry.cs │ │ │ ├── SimpleCorrelationDemo.cs │ │ │ ├── SimpleOrchestration.cs │ │ │ └── host.json │ │ ├── Readme.md │ │ ├── configuration.md │ │ ├── getting-started.md │ │ ├── images │ │ │ ├── app-service.png │ │ │ ├── cloud-shell.png │ │ │ ├── custom-properties.png │ │ │ ├── end-to-end.png │ │ │ ├── nuget-manager.png │ │ │ ├── overview.png │ │ │ ├── pick-a-publish-target.png │ │ │ └── search.png │ │ └── reference.md │ └── v2 │ │ ├── DistributedTracingSample │ │ ├── DistributedTracingSample.sln │ │ ├── DistributedTracingSample │ │ │ ├── .gitignore │ │ │ ├── DistributedTracingSample.csproj │ │ │ ├── DurableFunctionsPatterns.cs │ │ │ ├── Properties │ │ │ │ ├── serviceDependencies.json │ │ │ │ └── serviceDependencies.local.json │ │ │ ├── host.json │ │ │ └── local.settings.json │ │ └── README.md │ │ └── images │ │ ├── FanOutFanIn.png │ │ ├── FunctionChaining.png │ │ ├── HumanInteraction1.png │ │ ├── HumanInteraction2.png │ │ └── Monitoring.png ├── durable-client-managed-identity │ ├── aspnetcore-app │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ ├── Models │ │ │ ├── TodoContext.cs │ │ │ └── TodoItem.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── ToDoList.csproj │ │ ├── ToDoList.sln │ │ └── appsettings.json │ └── functions-app │ │ ├── ClientFunction.cs │ │ ├── DurableClientSampleFunctionApp.csproj │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── host.json │ │ └── local.settings.json ├── entitites-csharp │ ├── Chirper │ │ ├── Chirper.Service │ │ │ ├── Chirper.Service.csproj │ │ │ ├── Entities │ │ │ │ ├── IUserChirps.cs │ │ │ │ ├── IUserFollows.cs │ │ │ │ ├── UserChirps.cs │ │ │ │ └── UserFollows.cs │ │ │ ├── Orchestrations │ │ │ │ └── GetTimeline.cs │ │ │ ├── PublicRest │ │ │ │ ├── Chirp.cs │ │ │ │ └── HttpSurface.cs │ │ │ ├── host.json │ │ │ └── local.settings.json │ │ ├── Chirper.sln │ │ └── README.md │ └── RideSharing │ │ ├── README.md │ │ ├── RideSharing.sln │ │ └── RideSharing │ │ ├── Entities │ │ ├── IRegionEntity.cs │ │ ├── IUserEntity.cs │ │ ├── RegionEntity.cs │ │ └── UserEntity.cs │ │ ├── Orchestrations │ │ └── AdvertiseAvailabilityAndStartSearch.cs │ │ ├── PublicRest │ │ ├── HttpSurface.cs │ │ └── RideInfo.cs │ │ ├── RideSharing.csproj │ │ ├── ZipCodes.cs │ │ ├── host.json │ │ └── local.settings.json ├── fsharp │ ├── BackupSiteContent.fs │ ├── DurableFSharp.fsproj │ ├── HelloSequence.fs │ ├── HttpStart.fs │ ├── HttpSyncStart.fs │ ├── Monitor.fs │ ├── PhoneVerification.fs │ ├── README.md │ ├── host.json │ └── local.settings.json ├── functionapp-csharp │ ├── ClientFunction.cs │ ├── DurableClientSampleFunctionApp.csproj │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── README.md │ ├── Startup.cs │ ├── host.json │ └── local.settings.json ├── isolated-unit-tests │ ├── HelloCitiesOrchestration.cs │ ├── IsolatedUnitTest.csproj │ ├── Tests │ │ └── HelloCitiesOrchestrationTests.cs │ ├── host.json │ └── local.settings.json ├── precompiled │ ├── BackupSiteContent.cs │ ├── Counter.cs │ ├── HelloSequence.cs │ ├── HttpStart.cs │ ├── HttpSyncStart.cs │ ├── Monitor.cs │ ├── PhoneVerification.cs │ ├── RestartVMs.cs │ ├── SMSReminder.cs │ ├── VSSample.csproj │ ├── VSSample.sln │ ├── host.json │ └── local.settings.json └── todolist-aspnetcore │ ├── Controllers │ └── TodoController.cs │ ├── Models │ ├── TodoContext.cs │ └── TodoItem.cs │ ├── Program.cs │ ├── README.md │ ├── Startup.cs │ ├── ToDoList.csproj │ ├── ToDoList.sln │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── app │ ├── scripts │ │ ├── app.js │ │ ├── todoListCtrl.js │ │ └── todoListSvc.js │ └── views │ │ └── TodoList.html │ └── index.html ├── sign.snk ├── src ├── DurableFunctions.TypedInterfaces │ ├── Example │ │ ├── Calculator.cs │ │ ├── DurableFunctions.TypedInterfaces.Example.csproj │ │ ├── Models │ │ │ └── ComplexNumber.cs │ │ ├── SimpleOrchestration.cs │ │ ├── Startup.cs │ │ ├── host.json │ │ └── local.settings.json │ ├── README.md │ ├── SourceGenerator │ │ ├── DurableFunctions.TypedInterfaces.csproj │ │ ├── DurableTaskSourceGenerator.cs │ │ ├── DurableTaskSyntaxReceiver.cs │ │ ├── Generators │ │ │ ├── BaseGenerator.cs │ │ │ ├── ITypedDurableActivityCallerGenerator.cs │ │ │ ├── ITypedDurableClientGenerator.cs │ │ │ ├── ITypedDurableOrchestrationCallerGenerator.cs │ │ │ ├── ITypedDurableOrchestrationContextGenerator.cs │ │ │ ├── ITypedDurableOrchestrationStarterGenerator.cs │ │ │ ├── TypedCallerImplementationGenerator.cs │ │ │ ├── TypedCallerInterfaceGenerator.cs │ │ │ ├── TypedDurableActivityCallerGenerator.cs │ │ │ ├── TypedDurableClientGenerator.cs │ │ │ ├── TypedDurableOrchestrationCallerGenerator.cs │ │ │ ├── TypedDurableOrchestrationContextGenerator.cs │ │ │ ├── TypedDurableOrchestrationStarterGenerator.cs │ │ │ ├── WrapperImplementationGenerator.cs │ │ │ └── WrapperInterfaceGenerator.cs │ │ ├── Models │ │ │ ├── DurableFunction.cs │ │ │ └── TypedParameter.cs │ │ └── Utils │ │ │ ├── DurableFunctionUtility.cs │ │ │ ├── ITypeSymbolExtensions.cs │ │ │ ├── Names.cs │ │ │ ├── SyntaxNodeUtility.cs │ │ │ └── TypeExtensions.cs │ └── WebJobs.Extensions.DurableTask.CodeGen.sln ├── WebJobs.Extensions.DurableTask.Analyzers.Vsix │ ├── WebJobs.Extensions.DurableTask.Analyzers.Vsix.csproj │ └── source.extension.vsixmanifest ├── WebJobs.Extensions.DurableTask.Analyzers │ ├── ActivityFunctionCall.cs │ ├── ActivityFunctionDefinition.cs │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── Analyzers │ │ ├── ActivityFunction │ │ │ ├── ArgumentAnalyzer.cs │ │ │ ├── FunctionAnalyzer.cs │ │ │ ├── FunctionReturnTypeAnalyzer.cs │ │ │ └── NameAnalyzer.cs │ │ ├── Binding │ │ │ ├── ClientAnalyzer.cs │ │ │ ├── EntityContextAnalyzer.cs │ │ │ └── OrchestratorContextAnalyzer.cs │ │ ├── Entity │ │ │ ├── ClassNameAnalyzer.cs │ │ │ ├── DispatchEntityNameAnalyzer.cs │ │ │ └── StaticFunctionAnalyzer.cs │ │ ├── EntityInterface │ │ │ ├── EntityInterfaceReturnTypeAnalyzer.cs │ │ │ ├── InterfaceAnalyzer.cs │ │ │ ├── InterfaceContentAnalyzer.cs │ │ │ └── ParameterAnalyzer.cs │ │ └── Orchestrator │ │ │ ├── BindingAnalyzer.cs │ │ │ ├── CancellationTokenAnalyzer.cs │ │ │ ├── DateTimeAnalyzer.cs │ │ │ ├── DependencyInjectionAnalyzer.cs │ │ │ ├── DeterministicMethodAnalyzer.cs │ │ │ ├── EnvironmentVariableAnalyzer.cs │ │ │ ├── GuidAnalyzer.cs │ │ │ ├── IOTypesAnalyzer.cs │ │ │ ├── MethodInvocationAnalyzer.cs │ │ │ ├── OrchestratorMethodCollector.cs │ │ │ ├── ThreadTaskAnalyzer.cs │ │ │ └── TimerAnalyzer.cs │ ├── CodeFixProviderUtils.cs │ ├── CodefixProviders │ │ ├── Binding │ │ │ ├── ClientCodeFixProvider.cs │ │ │ ├── EntityContextCodeFixProvider.cs │ │ │ └── OrchestratorContextCodeFixProvider.cs │ │ ├── Entity │ │ │ ├── DispatchEntityNameCodeFixProvider.cs │ │ │ └── StaticFunctionCodeFixProvider.cs │ │ └── Orchestrator │ │ │ ├── DateTimeCodeFixProvider.cs │ │ │ ├── GuidCodeFixProvider.cs │ │ │ └── TimerCodeFixProvider.cs │ ├── DurableVersion.cs │ ├── EntityInterface.cs │ ├── MethodInformation.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── StringExtension.cs │ ├── SupportedCategories.cs │ ├── SyntaxNodeUtils.cs │ ├── Tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── WebJobs.Extensions.DurableTask.Analyzers.csproj │ └── WebJobs.Extensions.DurableTask.Analyzers.sln ├── WebJobs.Extensions.DurableTask │ ├── AssemblyInfo.cs │ ├── AsyncLock.cs │ ├── AzureStorageDurabilityProvider.cs │ ├── AzureStorageDurabilityProviderFactory.cs │ ├── Bindings │ │ ├── ActivityTriggerAttributeBindingProvider.cs │ │ ├── BindingHelper.cs │ │ ├── EntityTriggerAttributeBindingProvider.cs │ │ ├── ObjectValueProvider.cs │ │ ├── OrchestrationTriggerAttributeBindingProvider.cs │ │ └── RegisteredFunctionInfo.cs │ ├── CleanEntityStorageResult.cs │ ├── ContextImplementations │ │ ├── DurableActivityContext.cs │ │ ├── DurableClient.cs │ │ ├── DurableClientFactory.cs │ │ ├── DurableCommonContext.cs │ │ ├── DurableEntityContext.cs │ │ ├── DurableOrchestrationContext.cs │ │ ├── IDurableClientFactory.cs │ │ ├── RemoteEntityContext.cs │ │ └── RemoteOrchestratorContext.cs │ ├── ContextInterfaces │ │ ├── DurableContextExtensions.cs │ │ ├── IDurableActivityContext.cs │ │ ├── IDurableClient.cs │ │ ├── IDurableEntityClient.cs │ │ ├── IDurableEntityContext.cs │ │ ├── IDurableOrchestrationClient.cs │ │ ├── IDurableOrchestrationContext.cs │ │ └── LegacyCompatibility.cs │ ├── Correlation │ │ ├── DiagnosticActivityExtensions.cs │ │ ├── DurableTaskCorrelationTelemetryInitializer.cs │ │ ├── ITelemetryActivator.cs │ │ ├── NoOpTelemetryChannel.cs │ │ ├── Schema.cs │ │ ├── TelemetryActivator.cs │ │ ├── TraceActivityConstants.cs │ │ ├── TraceContextBaseExtensions.cs │ │ ├── TraceHelper.cs │ │ ├── TraceParent.cs │ │ └── WebJobsTelemetryModule.cs │ ├── DefaultPlatformInformation.cs │ ├── DeterministicAttribute.cs │ ├── DurabilityProvider.cs │ ├── DurableClientAttribute.cs │ ├── DurableEntityStatus.cs │ ├── DurableHttpClientFactory.cs │ ├── DurableHttpMessageHandlerFactory.cs │ ├── DurableHttpRequest.cs │ ├── DurableHttpResponse.cs │ ├── DurableOrchestrationStatus.cs │ ├── DurableTaskExtension.cs │ ├── DurableTaskJobHostConfigurationExtensions.cs │ ├── DurableTaskWebJobsStartup.cs │ ├── EndToEndTraceHelper.cs │ ├── EntityQuery.cs │ ├── EntityQueryResult.cs │ ├── EntityScheduler │ │ ├── Entity.cs │ │ ├── EntityCurrentOperationStatus.cs │ │ ├── EntityId.cs │ │ ├── EntityMessageEventNames.cs │ │ ├── EntitySchedulerException.cs │ │ ├── EntityStateResponse.cs │ │ ├── EntityStatus.cs │ │ ├── EntityTraceFlags.cs │ │ ├── LockingRulesViolationException.cs │ │ ├── MessageSorter.cs │ │ ├── OperationErrorException.cs │ │ ├── Proxy │ │ │ ├── DurableEntityProxyHelpers.cs │ │ │ ├── EntityClientProxy.cs │ │ │ ├── EntityContextProxy.cs │ │ │ ├── EntityProxy.cs │ │ │ ├── EntityProxyFactory.cs │ │ │ ├── IEntityProxyContext.cs │ │ │ └── OrchestrationContextProxy.cs │ │ ├── ReleaseMessage.cs │ │ ├── RequestMessage.cs │ │ ├── ResponseMessage.cs │ │ └── SchedulerState.cs │ ├── ErrorSerializerSettingsFactory.cs │ ├── EtwEventSource.cs │ ├── EventGridLifeCycleNotificationHelper.cs │ ├── EventSourceListener.cs │ ├── Exceptions │ │ └── EntityFailureException.cs │ ├── FunctionFailedException.cs │ ├── FunctionName.cs │ ├── FunctionNameWithVersion.cs │ ├── FunctionState.cs │ ├── FunctionType.cs │ ├── Grpc │ │ ├── AspNetCoreLocalGrpcListener.cs │ │ ├── ILocalGrpcListener.cs │ │ └── Protos │ │ │ ├── README.md │ │ │ ├── orchestrator_service.proto │ │ │ ├── refresh-protos.ps1 │ │ │ └── versions.txt │ ├── GuidManager.cs │ ├── HostLifecycleService.cs │ ├── HttpApiHandler.cs │ ├── HttpCreationPayload.cs │ ├── HttpHeadersConverter.cs │ ├── HttpManagementPayload.cs │ ├── HttpRequestMessageExtensions.cs │ ├── HttpRetryOptions.cs │ ├── IApplicationLifetimeWrapper.cs │ ├── IConnectionInfoResolver.cs │ ├── IConnectionStringResolver.cs │ ├── IDurabilityProviderFactory.cs │ ├── IDurableHttpMessageHandlerFactory.cs │ ├── IErrorSerializerSettingsFactory.cs │ ├── ILifeCycleNotificationHelper.cs │ ├── IMessageSerializerSettingsFactory.cs │ ├── IPlatformInformation.cs │ ├── ITokenSource.cs │ ├── LinuxAppServiceFileLogger.cs │ ├── LinuxAppServiceLogger.cs │ ├── Listener │ │ ├── DurableTaskListener.cs │ │ ├── DurableTaskMetricsProvider.cs │ │ ├── DurableTaskScaleMonitor.cs │ │ ├── DurableTaskTargetScaler.cs │ │ ├── DurableTaskTriggerMetrics.cs │ │ ├── DurableTaskWorkerContext.cs │ │ ├── FunctionExecutionHelper.cs │ │ ├── OutOfProcOrchestrationShim.cs │ │ ├── TaskActivityShim.cs │ │ ├── TaskCommonShim.cs │ │ ├── TaskEntityShim.cs │ │ ├── TaskHttpActivityShim.cs │ │ ├── TaskNonexistentActivityShim.cs │ │ ├── TaskOrchestrationShim.cs │ │ └── WrappedFunctionResult.cs │ ├── LocalHttpListener.cs │ ├── ManagedIdentityOptions.cs │ ├── ManagedIdentityTokenSource.cs │ ├── MessagePayloadDataConverter.cs │ ├── MessageSerializerSettingsFactory.cs │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.xml │ ├── NullLifeCycleNotificationHelper.cs │ ├── Options │ │ ├── AzureStorageOptions.cs │ │ ├── DurableClientOptions.cs │ │ ├── DurableDistributedTracingVersion.cs │ │ ├── DurableTaskOptions.cs │ │ ├── EventGridNotificationOptions.cs │ │ ├── HttpOptions.cs │ │ ├── NotificationOptions.cs │ │ ├── StorageServiceConnectionOptions.cs │ │ └── TraceOptions.cs │ ├── OrchestrationClientAttribute.cs │ ├── OrchestrationRuntimeStatus.cs │ ├── OrchestrationStatusQueryCondition.cs │ ├── OrchestrationStatusQueryResult.cs │ ├── OutOfProcExceptionHelpers.cs │ ├── OutOfProcMiddleware.cs │ ├── OutOfProcOrchestrationProtocol.cs │ ├── OverridableStates.cs │ ├── ProtobufUtils.cs │ ├── ProviderUtils.cs │ ├── PurgeHistoryResult.cs │ ├── ReadOnlyConfigurationValue.cs │ ├── RemoteOrchestratorConfiguration.cs │ ├── ReplaySafeLogger.cs │ ├── RetryOptions.cs │ ├── RetryOptionsConverter.cs │ ├── Scale │ │ ├── DurableTaskTriggersScaleProvider.cs │ │ └── ScaleUtils.cs │ ├── StandardConnectionInfoProvider.cs │ ├── StandardConnectionStringProvider.cs │ ├── StartOrchestrationArgs.cs │ ├── StatusResponsePayload.cs │ ├── Storage │ │ ├── BlobServiceClientProvider.cs │ │ ├── IStorageServiceClientProviderFactory.cs │ │ ├── IStorageServiceClientProviderFactoryExtensions.cs │ │ ├── NameValidator.cs │ │ ├── QueueServiceClientProvider.cs │ │ ├── StorageServiceClientProvider.cs │ │ ├── StorageServiceClientProviderFactory.cs │ │ └── TableServiceClientProvider.cs │ ├── TaskHubGrpcServer.cs │ ├── TriggerAttributes │ │ ├── ActivityTriggerAttribute.cs │ │ ├── EntityTriggerAttribute.cs │ │ └── OrchestrationTriggerAttribute.cs │ ├── TypedCodeProvider.cs │ ├── TypedDurableClientBindingProvider.cs │ ├── WebJobs.Extensions.DurableTask.csproj │ ├── WebJobsConnectionInfoProvider.cs │ ├── WebJobsConnectionStringProvider.cs │ ├── _CSharpLanguageHelpers.cs │ └── app.config └── Worker.Extensions.DurableTask │ ├── .editorconfig │ ├── ActivityInputConverter.cs │ ├── ActivityTriggerAttribute.cs │ ├── AssemblyInfo.cs │ ├── Constants.cs │ ├── DurableClientAttribute.cs │ ├── DurableTaskClientConverter.cs │ ├── DurableTaskClientExtensions.cs │ ├── DurableTaskExtensionStartup.cs │ ├── DurableTaskFunctionsMiddleware.cs │ ├── EntityTriggerAttribute.cs │ ├── Exceptions │ └── DurableSerializationException.cs │ ├── Execution │ ├── DurableFunctionExecutor.Activity.cs │ ├── DurableFunctionExecutor.Entity.cs │ ├── DurableFunctionExecutor.Orchestration.cs │ ├── DurableFunctionExecutor.cs │ ├── DurableFunctionMetadata.cs │ ├── DurableMetadataTransformer.cs │ ├── DurableTaskRegistryExtensions.cs │ ├── DurableWorkerBuilderExtensions.cs │ ├── FunctionsOrchestrator.cs │ ├── IDisposableOrchestrator.cs │ ├── TriggerNames.cs │ └── WrapperOrchestrator.cs │ ├── FunctionContextExtensions.cs │ ├── FunctionsDurableClientProvider.cs │ ├── FunctionsDurableClientProvider.net6.cs │ ├── FunctionsDurableClientProvider.netstandard.cs │ ├── FunctionsDurableTaskClient.cs │ ├── FunctionsOrchestrationContext.EntityFeature.cs │ ├── FunctionsOrchestrationContext.InputConverter.cs │ ├── FunctionsOrchestrationContext.cs │ ├── FunctionsWorkerApplicationBuilderExtensions.cs │ ├── HTTP │ ├── DurableHttpRequest.cs │ ├── DurableHttpResponse.cs │ ├── HttpHeadersConverter.cs │ ├── HttpMethodConverter.cs │ └── HttpRetryOptions.cs │ ├── HttpManagementPayload.cs │ ├── ManagedIdentityOptions.cs │ ├── ManagedIdentityTokenSource.cs │ ├── ObjectConverterShim.cs │ ├── OrchestrationInputConverter.cs │ ├── OrchestrationTriggerAttribute.cs │ ├── TaskEntityDispatcher.cs │ ├── TaskFailureDetailsConverter.cs │ ├── TaskOrchestrationContextExtensionMethods.cs │ ├── TokenSource.cs │ ├── TokenSourceConverter.cs │ ├── Worker.Extensions.DurableTask.csproj │ └── _CSharpLanguageHelpers.cs ├── test ├── CodeGen.Example.Test │ ├── CalculatorTests.cs │ └── DurableFunctions.TypedInterfaces.Examples.Test.csproj ├── CodeGen.SourceGenerator.Test │ ├── DurableFunctionTests.cs │ ├── DurableFunctions.TypedInterfaces.SourceGenerator.Test.csproj │ ├── Models │ │ ├── CalculatorDocument.cs │ │ └── CompiledProject.cs │ ├── SyntaxNodeUtilityTests.cs │ ├── Utils │ │ └── ProjectUtility.cs │ └── xunit.runner.json ├── Common │ ├── BindingTests.cs │ ├── ClientFunctions.cs │ ├── CustomTestStorageAccountProvider.cs │ ├── DurableClientBaseTests.cs │ ├── DurableClientMock.cs │ ├── DurableHttpTests.cs │ ├── DurableOptionsConfigurationTests.cs │ ├── DurableTaskEndToEndTests.cs │ ├── DurableTaskHostExtensions.cs │ ├── DurableTaskLifeCycleNotificationTest.cs │ ├── HttpApiHandlerTests.cs │ ├── ITestHost.cs │ ├── InterfaceOverloadTests.cs │ ├── LogEventTraceListener.cs │ ├── LogMessage.cs │ ├── MessageSorterTests.cs │ ├── MoqExtensions.cs │ ├── OrchestrationStatusQueryConditionTest.cs │ ├── OrchestrationVersionTests.cs │ ├── ReadOnlyConfigurationValueTests.cs │ ├── SimpleNameResolver.cs │ ├── StandardConnectionInfoProviderTests.cs │ ├── StorageServiceClientProviderFactoryTests.cs │ ├── TestActivities.cs │ ├── TestConstants.cs │ ├── TestDataGenerator.cs │ ├── TestDurableClient.cs │ ├── TestDurableHttpRequest.cs │ ├── TestEntities.cs │ ├── TestEntityClasses.cs │ ├── TestEntityClient.cs │ ├── TestFrameworkTests.cs │ ├── TestHelpers.cs │ ├── TestHostShutdownNotificationService.cs │ ├── TestLogger.cs │ ├── TestLoggerProvider.cs │ ├── TestOrchestrations.cs │ ├── TestStorageServiceClientProviderFactory.cs │ ├── UnconstructibleClass.cs │ ├── WebJobsConnectionInfoProviderTests.cs │ └── xunit.runner.json ├── DFPerfScenarios │ ├── Common.cs │ ├── DFPerfScenarios.sln │ ├── DFPerfScenariosV4.csproj │ ├── Tests │ │ ├── Counter.cs │ │ ├── FanOutFanIn.cs │ │ ├── ManySequencesTest.cs │ │ └── SubOrchestrationFanOutFanIn.cs │ ├── host.json │ └── local.settings.json ├── Directory.Packages.props ├── FunctionsV2 │ ├── AzureStorageDurabilityProviderFactoryTests.cs │ ├── AzureStorageOptionsTests.cs │ ├── AzureStorageShortenedTimerDurabilityProviderFactory.cs │ ├── CorrelationEndToEndTests.cs │ ├── CustomEtwDurabilityProviderFactory.cs │ ├── CustomStorageServiceClientProviderFactory.cs │ ├── DurableTaskListenerTests.cs │ ├── DurableTaskScaleMonitorTests.cs │ ├── DurableTaskTargetScalerTests.cs │ ├── EmulatorDurabilityProviderFactory.cs │ ├── EndToEndTraceHelperTests.cs │ ├── EntityDependencyInjectionTests.cs │ ├── EntityMethodDiscoveryTests.cs │ ├── FunctionNameWithVersionTests.cs │ ├── GuidManagerTests.cs │ ├── LocalGrpcListenerTests.cs │ ├── LongTimerTests.cs │ ├── OutOfProcTests.cs │ ├── PlatformSpecificHelpers.FunctionsV2.cs │ ├── ProtobufUtilsTests.cs │ ├── RedisDurabilityProviderFactory.cs │ ├── StorageProviderSelectionTests.cs │ ├── TestCleanup.cs │ ├── TestEntityWithDependencyInjectionHelpers.cs │ ├── TraceParentTest.cs │ └── WebJobs.Extensions.DurableTask.Tests.V2.csproj ├── PerfTests │ ├── DFPerfTests │ │ ├── .gitignore │ │ ├── Counter.cs │ │ ├── DFPerfScenarios │ │ │ ├── Common.cs │ │ │ ├── ExponentialFanOutV1.cs │ │ │ ├── FanOutFanIn.cs │ │ │ ├── HelloWorld.cs │ │ │ ├── LongSequence.cs │ │ │ ├── ManyInstancesTest.cs │ │ │ ├── MapReduceTripData.cs │ │ │ ├── PurgeHistory.cs │ │ │ ├── QuickTest.cs │ │ │ └── SubOrchestrationFanOutFanIn.cs │ │ ├── Utils.cs │ │ ├── host.json │ │ └── perf.csproj │ ├── JavaScript │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── FanOutFanIn │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── FanOutFanInOrchestration │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── Hello │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── ManyInstances │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── SequentialOrchestration │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── SharedUtils │ │ │ └── validateInput.js │ │ ├── SubOrchestrationFanOutFanIn │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── SubOrchestrationFanOutFanInOrchestrator │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── proxies.json │ └── Python │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── FanOutFanIn │ │ ├── __init__.py │ │ └── function.json │ │ ├── FanOutFanInOrchestrator │ │ ├── __init__.py │ │ └── function.json │ │ ├── Hello │ │ ├── __init__.py │ │ └── function.json │ │ ├── ManyInstances │ │ ├── __init__.py │ │ └── function.json │ │ ├── SequentialOrchestrator │ │ ├── __init__.py │ │ └── function.json │ │ ├── SubOrchestrationFanOutFanIn │ │ ├── __init__.py │ │ └── function.json │ │ ├── SubOrchestrationFanOutFanInOrchestrator │ │ ├── __init__.py │ │ └── function.json │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── proxies.json │ │ ├── requirements.txt │ │ └── shared_utils │ │ ├── __init__.py │ │ └── parse_and_validate_input.py ├── SmokeTests │ ├── BackendSmokeTests │ │ ├── MSSQL │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── DurableFunctionsOrchestrationCSharp..cs │ │ │ ├── MSSQL.csproj │ │ │ └── host.json │ │ └── Netherite │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── DurableFunctionsOrchestrationCSharp.cs │ │ │ ├── Netherite.csproj │ │ │ ├── Nuget.config │ │ │ └── host.json │ ├── OOProcSmokeTests │ │ ├── DotNetIsolated │ │ │ ├── Counter.cs │ │ │ ├── DirectInput.cs │ │ │ ├── Dockerfile │ │ │ ├── DotNetIsolated.csproj │ │ │ ├── DotNetIsolated.sln │ │ │ ├── EntityOrchestration.cs │ │ │ ├── FaultyOrchestrators.cs │ │ │ ├── GreetUser.cs │ │ │ ├── HelloCitiesTyped.cs │ │ │ ├── HelloCitiesUntyped.cs │ │ │ ├── Program.cs │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── run-smoke-tests.ps1 │ │ ├── durableJS │ │ │ ├── .funcignore │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Nuget.config │ │ │ ├── extensions.csproj │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── functions │ │ │ │ └── durableHello.js │ │ │ │ └── index.js │ │ ├── durableJava │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Nuget.config │ │ │ ├── build.gradle │ │ │ ├── extensions.csproj │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── functions │ │ │ │ └── AzureFunctions.java │ │ └── durablePy │ │ │ ├── .funcignore │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── DurableFunctionsHttpStart │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── DurableFunctionsOrchestrator │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── Hello │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── Nuget.config │ │ │ ├── Print │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── PrintArray │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── PrintObject │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── extensions.csproj │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── requirements.txt │ └── e2e-test.ps1 ├── TimeoutTests │ ├── CSharp │ │ ├── ActivityTimeout.cs │ │ ├── EntityTimeout.cs │ │ ├── HttpStart.cs │ │ ├── OrchestrationTimeout.cs │ │ ├── TimeoutTests.csproj │ │ ├── host.json │ │ └── local.settings.json │ └── Python │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── ActivityTimeout │ │ ├── __init__.py │ │ └── function.json │ │ ├── DurableFunctionsHttpStart │ │ ├── __init__.py │ │ └── function.json │ │ ├── EntityTimeout1 │ │ ├── __init__.py │ │ └── function.json │ │ ├── Nuget.config │ │ ├── README.md │ │ ├── SlowActivity │ │ ├── __init__.py │ │ └── function.json │ │ ├── SlowEntity │ │ ├── __init__.py │ │ └── function.json │ │ ├── extensions.csproj │ │ ├── host.json │ │ └── requirements.txt ├── WebJobs.Extensions.DurableTask.Analyzers.Test │ ├── ActivityFunction │ │ ├── ArgumentAnalyzerTests.cs │ │ ├── FunctionReturnTypeAnalyzerTests.cs │ │ └── NameAnalyzerTests.cs │ ├── Binding │ │ ├── ClientAnalyzerTests.cs │ │ ├── EntityContentAnalyzerTests.cs │ │ └── OrchestratorContextAnalyzerTests.cs │ ├── Entity │ │ ├── ClassNameAnalyzerTests.cs │ │ ├── DispatchEntityNameAnalyzerTests.cs │ │ └── StaticFunctionAnalyzerTests.cs │ ├── EntityInterface │ │ ├── EntityInterfaceReturnTypeAnalyzerTests.cs │ │ ├── InterfaceAnalyzerTests.cs │ │ ├── InterfaceContentAnalyzerTests.cs │ │ └── ParameterAnalyzerTests.cs │ ├── Helpers │ │ ├── CodeFixVerifier.Helper.cs │ │ ├── DiagnosticResult.cs │ │ └── DiagnosticVerifier.Helper.cs │ ├── Orchestrator │ │ ├── BindingAnalyzerTersts.cs │ │ ├── CancellationTokenAnalyzerTests.cs │ │ ├── DateTimeAnalyzerTests.cs │ │ ├── DependencyInjectionAnalyzerTests.cs │ │ ├── EnvironmentVariableAnalyzerTests.cs │ │ ├── GuidAnalyzerTests.cs │ │ ├── IOTypesAnalyzerTests.cs │ │ ├── MethodInvocationAnalyzerTests.cs │ │ ├── ThreadTaskAnalyzerTests.cs │ │ └── TimerAnalyzerTests.cs │ ├── Verifiers │ │ ├── CodeFixVerifier.cs │ │ └── DiagnosticVerifier.cs │ └── WebJobs.Extensions.DurableTask.Analyzers.Test.csproj ├── Worker.Extensions.DurableTask.Tests │ ├── DurableFunctionMetadataTests.cs │ ├── DurableMetadataTransformerTests.cs │ ├── DurableTaskRegistryExtensionsTests.cs │ ├── FunctionContextExtensionsTests.cs │ ├── FunctionsDurableTaskClientTests.cs │ ├── OrchestrationInputConverterTests.cs │ ├── TokenSourceConverterTests.cs │ └── Worker.Extensions.DurableTask.Tests.csproj └── e2e │ ├── Apps │ ├── BasicDotNetIsolated │ │ ├── ActivityErrorHandling.cs │ │ ├── ActivityInputType.cs │ │ ├── BasicDotNetIsolated.sln │ │ ├── ClassBasedEntities.cs │ │ ├── CustomExceptionPropertiesOrchestration.cs │ │ ├── DistributedTracing.cs │ │ ├── DistributedTracingEntities.cs │ │ ├── EntityCreatesScheduledOrchestration.cs │ │ ├── EntityErrorHandling.cs │ │ ├── EntitySchedulesVersionedOrchestration.cs │ │ ├── ExternalEventOrchestration.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HTTPFeature.cs │ │ ├── HelloCities.cs │ │ ├── LargeOutputOrchestrator.cs │ │ ├── OrchestrationQuery.cs │ │ ├── Program.cs │ │ ├── PurgeOrchestrationHistory.cs │ │ ├── RestartOrchestration.cs │ │ ├── RewindOrchestration.cs │ │ ├── SuspendResumeOrchestration.cs │ │ ├── TerminateOrchestration.cs │ │ ├── TestAsyncMiddleware.cs │ │ ├── TimeoutOrchestration.cs │ │ ├── VersionedOrchestration.cs │ │ ├── app.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ └── nuget.config │ ├── BasicJava │ │ ├── .gitignore │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── nuget.config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── function │ │ │ ├── ActivityErrorHandling.java │ │ │ ├── ActivityInputType.java │ │ │ ├── ExternalEventOrchestration.java │ │ │ ├── HelloCities.java │ │ │ ├── JsonHelpers │ │ │ ├── DurableMetadataGsonProvider.java │ │ │ └── InstantAdapter.java │ │ │ ├── LargeOutputOrchestrator.java │ │ │ ├── OrchestrationQuery.java │ │ │ ├── PurgeOrchestrationHistory.java │ │ │ ├── SuspendResumeOrchestration.java │ │ │ ├── TerminateOrchestration.java │ │ │ ├── TimeoutOrchestration.java │ │ │ └── exceptions │ │ │ ├── InvalidOperationException.java │ │ │ └── OverflowException.java │ ├── BasicNode │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── nuget.config │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Shared │ │ │ │ └── ExceptionTypes.ts │ │ │ ├── functions │ │ │ │ ├── ActivityErrorHandling.ts │ │ │ │ ├── ActivityInputType.ts │ │ │ │ ├── ClassBasedEntities.ts │ │ │ │ ├── EntityErrorHandling.ts │ │ │ │ ├── ExternalEventOrchestration.ts │ │ │ │ ├── HelloCities.ts │ │ │ │ ├── LargeOutputOrchestrator.ts │ │ │ │ ├── OrchestrationQuery.ts │ │ │ │ ├── PurgeOrchestrationHistory.ts │ │ │ │ ├── RewindOrchestration.ts │ │ │ │ ├── SuspendResumeOrchestration.ts │ │ │ │ ├── TerminateOrchestration.ts │ │ │ │ └── TimeoutOrchestration.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── BasicPowerShell │ │ ├── .gitignore │ │ ├── ActivityInputTypeOrchestrator │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── CatchActivityException │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── CustomRetryActivityFunction │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── ExternalEventOrchestrator │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── HelloCities │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── HelloCities_HttpStart │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckByteArray │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckCustomClass │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckCustomClassArray │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckIntArray │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckSingleByte │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── InputCheckString │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── LargeOutputOrchestrator │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── LargeOutputOrchestrator_HttpStart │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── LargeOutputOrchestrator_Query_Output │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── LongActivity │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── LongRunningOrchestrator │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── Modules │ │ │ └── MyHelperModule │ │ │ │ └── MyHelperModule.psm1 │ │ ├── RaiseComplexException │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── RaiseException │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── ResumeInstance │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── RethrowActivityException │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── RetryActivityFunction │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── SayHello │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── SendExternalEvent_HttpStart │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── SimulatedWorkActivity │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── StartOrchestration │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── SuspendInstance │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── TerminateInstance │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── TimeoutOrchestrator │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── TimeoutOrchestrator_HttpStart │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── nuget.config │ │ ├── profile.ps1 │ │ └── requirements.psd1 │ └── BasicPython │ │ ├── .gitignore │ │ ├── activity_error_handling.py │ │ ├── activity_input_type.py │ │ ├── class_based_entities.py │ │ ├── custom_exception_types.py │ │ ├── entity_error_handling.py │ │ ├── extensions.csproj │ │ ├── external_event_orchestration.py │ │ ├── function_app.py │ │ ├── hello_cities.py │ │ ├── host.json │ │ ├── large_output_orchestrator.py │ │ ├── local.settings.json │ │ ├── nuget.config │ │ ├── orchestration_query.py │ │ ├── purge_orchestration_history.py │ │ ├── requirements.txt │ │ ├── suspend_resume_orchestration.py │ │ ├── terminate_orchestration.py │ │ └── timeout_orchestration.py │ └── Tests │ ├── Constants.cs │ ├── E2ETests.csproj │ ├── Fixtures │ ├── FixtureHelpers.cs │ ├── FunctionAppFixture.cs │ └── FunctionAppProcess.cs │ ├── GlobalSuppressions.cs │ ├── Helpers │ ├── DurableHelpers.cs │ ├── HttpHelpers.cs │ ├── TestLoggerProvider.cs │ └── TestUtility.cs │ ├── JobObjectRegistry.cs │ ├── Localizers │ ├── ITestLanguageLocalizer.cs │ ├── IsolatedTestLanguageLocalizer.cs │ ├── JavaTestLanguageLocalizer.cs │ ├── NodeTestLanguageLocalizer.cs │ ├── PowerShellTestLanguageLocalizer.cs │ └── PythonTestLanguageLocalizer.cs │ ├── TestCollections │ ├── FunctionAppCollection.cs │ └── FunctionAppCollectionSequential.cs │ ├── Tests │ ├── ActivityInputTypeTests.cs │ ├── ClassBasedEntityTests.cs │ ├── DistributedTracingEntitiesTests.cs │ ├── DistributedTracingTests.cs │ ├── EntityVersioningTests.cs │ ├── ErrorHandlingTests.cs │ ├── ExternalEventTests.cs │ ├── HTTPFeatureTests.cs │ ├── HelloCitiesTest.cs │ ├── LargeOutputOrchestratorTests.cs │ ├── OrchestrationQueryTests.cs │ ├── PurgeInstancesTests.cs │ ├── RestartOrchestrationTests.cs │ ├── RewindOrchestratorTests.cs │ ├── ScheduledOrchestrationTests.cs │ ├── SuspendResumeTests.cs │ ├── TerminateOrchestratorTests.cs │ ├── TimeoutTests.cs │ └── VersioningTests.cs │ ├── build-e2e-test.ps1 │ ├── e2e-tests-readme.md │ ├── start-emulators.ps1 │ └── test.runsettings └── tools └── triageHelper ├── .funcignore ├── .gitignore ├── README.md ├── function_app.py ├── host.json └── requirements.txt /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/ISSUE_TEMPLATE/new-release-template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/E2ETest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/E2ETest.yml -------------------------------------------------------------------------------- /.github/workflows/codeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/codeQL.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-dotnet-isolated-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-dotnet-isolated-v4.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-java8-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-java8-v4.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-mssql-inproc-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-mssql-inproc-v4.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-netherite-inproc-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-netherite-inproc-v4.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-node20-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-node20-v4.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest-python37-v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/smoketest-python37-v4.yml -------------------------------------------------------------------------------- /.github/workflows/validate-build-analyzer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/validate-build-analyzer.yml -------------------------------------------------------------------------------- /.github/workflows/validate-build-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/validate-build-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/validate-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.github/workflows/validate-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylecop/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.stylecop/GlobalSuppressions.cs -------------------------------------------------------------------------------- /.stylecop/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/.stylecop/stylecop.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WebJobs.Extensions.DurableTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/WebJobs.Extensions.DurableTask.sln -------------------------------------------------------------------------------- /azure-pipelines-analyzer-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/azure-pipelines-analyzer-release.yml -------------------------------------------------------------------------------- /azure-pipelines-release-dotnet-isolated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/azure-pipelines-release-dotnet-isolated.yml -------------------------------------------------------------------------------- /azure-pipelines-release-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/azure-pipelines-release-nightly.yml -------------------------------------------------------------------------------- /azure-pipelines-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/azure-pipelines-release.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docfx/_exported_templates/default/ManagedReference.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/ManagedReference.common.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/ManagedReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/ManagedReference.extension.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/RestApi.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/RestApi.common.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/RestApi.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/RestApi.extension.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/RestApi.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/RestApi.html.primary.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/RestApi.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/RestApi.html.primary.tmpl -------------------------------------------------------------------------------- /docfx/_exported_templates/default/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/common.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/conceptual.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/conceptual.extension.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/conceptual.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/conceptual.html.primary.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/conceptual.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/conceptual.html.primary.tmpl -------------------------------------------------------------------------------- /docfx/_exported_templates/default/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/favicon.ico -------------------------------------------------------------------------------- /docfx/_exported_templates/default/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/gulpfile.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/layout/_master.tmpl -------------------------------------------------------------------------------- /docfx/_exported_templates/default/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/logo.svg -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_affix.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_affix.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_breadcrumb.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_breadcrumb.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_footer.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_head.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_head.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_logo.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_logo.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_navbar.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_navbar.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_scripts.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_scripts.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/_toc.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/_toc.liquid -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/affix.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/class.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/class.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/enum.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/enum.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/li.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/li.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/logo.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/logo.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/rest.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/rest.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/title.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/title.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/partials/toc.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/partials/toc.tmpl.partial -------------------------------------------------------------------------------- /docfx/_exported_templates/default/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/search-stopwords.json -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/docfx.css -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/docfx.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/lunr.min.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/main.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/styles/search-worker.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/toc.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/toc.extension.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/toc.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/toc.html.js -------------------------------------------------------------------------------- /docfx/_exported_templates/default/toc.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/toc.html.tmpl -------------------------------------------------------------------------------- /docfx/_exported_templates/default/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/_exported_templates/default/token.json -------------------------------------------------------------------------------- /docfx/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/build.cmd -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/favicon.ico -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.ActivityTriggerAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.ActivityTriggerAttribute.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.DurableActivityContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.DurableActivityContext.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.DurableActivityContextBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.DurableActivityContextBase.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationClient.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationStatus.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.Extensions.DurableTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.Extensions.DurableTask.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.FunctionFailedException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.FunctionFailedException.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.HttpManagementPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.HttpManagementPayload.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.OrchestrationRuntimeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.OrchestrationRuntimeStatus.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.PurgeHistoryResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.PurgeHistoryResult.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.RetryOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.RetryOptions.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.StartOrchestrationArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.StartOrchestrationArgs.html -------------------------------------------------------------------------------- /docs/api/Microsoft.Azure.WebJobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/Microsoft.Azure.WebJobs.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/files/DFSampleApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/files/DFSampleApp.zip -------------------------------------------------------------------------------- /docs/files/VSDFSampleApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/files/VSDFSampleApp.zip -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/eng/ci/official-build.yml -------------------------------------------------------------------------------- /eng/ci/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/eng/ci/publish.yml -------------------------------------------------------------------------------- /eng/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/eng/templates/build.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/nuget.config -------------------------------------------------------------------------------- /nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/nuget.exe -------------------------------------------------------------------------------- /pending_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/pending_docs.md -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/release_notes.md -------------------------------------------------------------------------------- /samples/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/Directory.Packages.props -------------------------------------------------------------------------------- /samples/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/Samples.sln -------------------------------------------------------------------------------- /samples/VSSample.Tests/HelloSequenceActivityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/VSSample.Tests/HelloSequenceActivityTests.cs -------------------------------------------------------------------------------- /samples/VSSample.Tests/HelloSequenceOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/VSSample.Tests/HelloSequenceOrchestratorTests.cs -------------------------------------------------------------------------------- /samples/VSSample.Tests/HttpStartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/VSSample.Tests/HttpStartTests.cs -------------------------------------------------------------------------------- /samples/VSSample.Tests/VSSample.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/VSSample.Tests/VSSample.Tests.csproj -------------------------------------------------------------------------------- /samples/csx/E1_HelloSequence/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E1_HelloSequence/function.json -------------------------------------------------------------------------------- /samples/csx/E1_HelloSequence/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E1_HelloSequence/run.csx -------------------------------------------------------------------------------- /samples/csx/E1_SayHello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E1_SayHello/function.json -------------------------------------------------------------------------------- /samples/csx/E1_SayHello/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E1_SayHello/run.csx -------------------------------------------------------------------------------- /samples/csx/E2_BackupSiteContent/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_BackupSiteContent/function.json -------------------------------------------------------------------------------- /samples/csx/E2_BackupSiteContent/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_BackupSiteContent/run.csx -------------------------------------------------------------------------------- /samples/csx/E2_CopyFileToBlob/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_CopyFileToBlob/function.json -------------------------------------------------------------------------------- /samples/csx/E2_CopyFileToBlob/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_CopyFileToBlob/run.csx -------------------------------------------------------------------------------- /samples/csx/E2_GetFileList/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_GetFileList/function.json -------------------------------------------------------------------------------- /samples/csx/E2_GetFileList/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E2_GetFileList/run.csx -------------------------------------------------------------------------------- /samples/csx/E3_GetIsClear/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_GetIsClear/function.json -------------------------------------------------------------------------------- /samples/csx/E3_GetIsClear/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_GetIsClear/run.csx -------------------------------------------------------------------------------- /samples/csx/E3_Monitor/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_Monitor/function.json -------------------------------------------------------------------------------- /samples/csx/E3_Monitor/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_Monitor/run.csx -------------------------------------------------------------------------------- /samples/csx/E3_SendGoodWeatherAlert/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_SendGoodWeatherAlert/function.json -------------------------------------------------------------------------------- /samples/csx/E3_SendGoodWeatherAlert/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E3_SendGoodWeatherAlert/run.csx -------------------------------------------------------------------------------- /samples/csx/E4_SendSmsChallenge/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E4_SendSmsChallenge/function.json -------------------------------------------------------------------------------- /samples/csx/E4_SendSmsChallenge/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E4_SendSmsChallenge/run.csx -------------------------------------------------------------------------------- /samples/csx/E4_SmsPhoneVerification/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E4_SmsPhoneVerification/function.json -------------------------------------------------------------------------------- /samples/csx/E4_SmsPhoneVerification/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/E4_SmsPhoneVerification/run.csx -------------------------------------------------------------------------------- /samples/csx/HttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/HttpStart/function.json -------------------------------------------------------------------------------- /samples/csx/HttpStart/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/HttpStart/run.csx -------------------------------------------------------------------------------- /samples/csx/HttpSyncStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/HttpSyncStart/function.json -------------------------------------------------------------------------------- /samples/csx/HttpSyncStart/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/HttpSyncStart/run.csx -------------------------------------------------------------------------------- /samples/csx/ManualStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/ManualStart/function.json -------------------------------------------------------------------------------- /samples/csx/ManualStart/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/ManualStart/run.csx -------------------------------------------------------------------------------- /samples/csx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/README.md -------------------------------------------------------------------------------- /samples/csx/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/extensions.csproj -------------------------------------------------------------------------------- /samples/csx/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/host.json -------------------------------------------------------------------------------- /samples/csx/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/local.settings.json -------------------------------------------------------------------------------- /samples/csx/shared/Location.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/shared/Location.csx -------------------------------------------------------------------------------- /samples/csx/shared/MonitorRequest.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/shared/MonitorRequest.csx -------------------------------------------------------------------------------- /samples/csx/shared/WeatherUnderground.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/csx/shared/WeatherUnderground.csx -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/FunctionAppCorrelation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/FunctionAppCorrelation.sln -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/FunctionAppCorrelation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/FunctionAppCorrelation/.gitignore -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/FunctionAppCorrelation/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/FunctionAppCorrelation/Counter.cs -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/FunctionAppCorrelation/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/FunctionAppCorrelation/host.json -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/Readme.md -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/configuration.md -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/getting-started.md -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/app-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/app-service.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/cloud-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/cloud-shell.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/custom-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/custom-properties.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/end-to-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/end-to-end.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/nuget-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/nuget-manager.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/overview.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/pick-a-publish-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/pick-a-publish-target.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/images/search.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v1/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v1/reference.md -------------------------------------------------------------------------------- /samples/distributed-tracing/v2/images/FanOutFanIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v2/images/FanOutFanIn.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v2/images/FunctionChaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v2/images/FunctionChaining.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v2/images/HumanInteraction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v2/images/HumanInteraction1.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v2/images/HumanInteraction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v2/images/HumanInteraction2.png -------------------------------------------------------------------------------- /samples/distributed-tracing/v2/images/Monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/distributed-tracing/v2/images/Monitoring.png -------------------------------------------------------------------------------- /samples/durable-client-managed-identity/aspnetcore-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/durable-client-managed-identity/aspnetcore-app/README.md -------------------------------------------------------------------------------- /samples/durable-client-managed-identity/functions-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/durable-client-managed-identity/functions-app/README.md -------------------------------------------------------------------------------- /samples/durable-client-managed-identity/functions-app/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/durable-client-managed-identity/functions-app/Startup.cs -------------------------------------------------------------------------------- /samples/durable-client-managed-identity/functions-app/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/durable-client-managed-identity/functions-app/host.json -------------------------------------------------------------------------------- /samples/entitites-csharp/Chirper/Chirper.Service/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/Chirper/Chirper.Service/host.json -------------------------------------------------------------------------------- /samples/entitites-csharp/Chirper/Chirper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/Chirper/Chirper.sln -------------------------------------------------------------------------------- /samples/entitites-csharp/Chirper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/Chirper/README.md -------------------------------------------------------------------------------- /samples/entitites-csharp/RideSharing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/RideSharing/README.md -------------------------------------------------------------------------------- /samples/entitites-csharp/RideSharing/RideSharing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/RideSharing/RideSharing.sln -------------------------------------------------------------------------------- /samples/entitites-csharp/RideSharing/RideSharing/ZipCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/RideSharing/RideSharing/ZipCodes.cs -------------------------------------------------------------------------------- /samples/entitites-csharp/RideSharing/RideSharing/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/entitites-csharp/RideSharing/RideSharing/host.json -------------------------------------------------------------------------------- /samples/fsharp/BackupSiteContent.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/BackupSiteContent.fs -------------------------------------------------------------------------------- /samples/fsharp/DurableFSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/DurableFSharp.fsproj -------------------------------------------------------------------------------- /samples/fsharp/HelloSequence.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/HelloSequence.fs -------------------------------------------------------------------------------- /samples/fsharp/HttpStart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/HttpStart.fs -------------------------------------------------------------------------------- /samples/fsharp/HttpSyncStart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/HttpSyncStart.fs -------------------------------------------------------------------------------- /samples/fsharp/Monitor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/Monitor.fs -------------------------------------------------------------------------------- /samples/fsharp/PhoneVerification.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/PhoneVerification.fs -------------------------------------------------------------------------------- /samples/fsharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/README.md -------------------------------------------------------------------------------- /samples/fsharp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/host.json -------------------------------------------------------------------------------- /samples/fsharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/fsharp/local.settings.json -------------------------------------------------------------------------------- /samples/functionapp-csharp/ClientFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/ClientFunction.cs -------------------------------------------------------------------------------- /samples/functionapp-csharp/DurableClientSampleFunctionApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/DurableClientSampleFunctionApp.csproj -------------------------------------------------------------------------------- /samples/functionapp-csharp/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /samples/functionapp-csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/README.md -------------------------------------------------------------------------------- /samples/functionapp-csharp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/Startup.cs -------------------------------------------------------------------------------- /samples/functionapp-csharp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/host.json -------------------------------------------------------------------------------- /samples/functionapp-csharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/functionapp-csharp/local.settings.json -------------------------------------------------------------------------------- /samples/isolated-unit-tests/HelloCitiesOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/isolated-unit-tests/HelloCitiesOrchestration.cs -------------------------------------------------------------------------------- /samples/isolated-unit-tests/IsolatedUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/isolated-unit-tests/IsolatedUnitTest.csproj -------------------------------------------------------------------------------- /samples/isolated-unit-tests/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/isolated-unit-tests/host.json -------------------------------------------------------------------------------- /samples/isolated-unit-tests/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/isolated-unit-tests/local.settings.json -------------------------------------------------------------------------------- /samples/precompiled/BackupSiteContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/BackupSiteContent.cs -------------------------------------------------------------------------------- /samples/precompiled/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/Counter.cs -------------------------------------------------------------------------------- /samples/precompiled/HelloSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/HelloSequence.cs -------------------------------------------------------------------------------- /samples/precompiled/HttpStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/HttpStart.cs -------------------------------------------------------------------------------- /samples/precompiled/HttpSyncStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/HttpSyncStart.cs -------------------------------------------------------------------------------- /samples/precompiled/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/Monitor.cs -------------------------------------------------------------------------------- /samples/precompiled/PhoneVerification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/PhoneVerification.cs -------------------------------------------------------------------------------- /samples/precompiled/RestartVMs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/RestartVMs.cs -------------------------------------------------------------------------------- /samples/precompiled/SMSReminder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/SMSReminder.cs -------------------------------------------------------------------------------- /samples/precompiled/VSSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/VSSample.csproj -------------------------------------------------------------------------------- /samples/precompiled/VSSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/VSSample.sln -------------------------------------------------------------------------------- /samples/precompiled/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/host.json -------------------------------------------------------------------------------- /samples/precompiled/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/precompiled/local.settings.json -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/Controllers/TodoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/Controllers/TodoController.cs -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/Models/TodoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/Models/TodoContext.cs -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/Models/TodoItem.cs -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/Program.cs -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/README.md -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/Startup.cs -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/ToDoList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/ToDoList.csproj -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/ToDoList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/ToDoList.sln -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/appsettings.Development.json -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/appsettings.json -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/wwwroot/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/wwwroot/app/scripts/app.js -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/wwwroot/app/scripts/todoListCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/wwwroot/app/scripts/todoListCtrl.js -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/wwwroot/app/scripts/todoListSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/wwwroot/app/scripts/todoListSvc.js -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/wwwroot/app/views/TodoList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/wwwroot/app/views/TodoList.html -------------------------------------------------------------------------------- /samples/todolist-aspnetcore/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/samples/todolist-aspnetcore/wwwroot/index.html -------------------------------------------------------------------------------- /sign.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/sign.snk -------------------------------------------------------------------------------- /src/DurableFunctions.TypedInterfaces/Example/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/DurableFunctions.TypedInterfaces/Example/Calculator.cs -------------------------------------------------------------------------------- /src/DurableFunctions.TypedInterfaces/Example/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/DurableFunctions.TypedInterfaces/Example/Startup.cs -------------------------------------------------------------------------------- /src/DurableFunctions.TypedInterfaces/Example/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/DurableFunctions.TypedInterfaces/Example/host.json -------------------------------------------------------------------------------- /src/DurableFunctions.TypedInterfaces/Example/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/DurableFunctions.TypedInterfaces/Example/local.settings.json -------------------------------------------------------------------------------- /src/DurableFunctions.TypedInterfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/DurableFunctions.TypedInterfaces/README.md -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/DurableVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/DurableVersion.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/EntityInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/EntityInterface.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/Resources.resx -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/StringExtension.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/SyntaxNodeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/SyntaxNodeUtils.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/Tools/install.ps1 -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask.Analyzers/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask.Analyzers/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/AsyncLock.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Bindings/BindingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Bindings/BindingHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/CleanEntityStorageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/CleanEntityStorageResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Correlation/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Correlation/Schema.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Correlation/TraceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Correlation/TraceHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Correlation/TraceParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Correlation/TraceParent.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DefaultPlatformInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DefaultPlatformInformation.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DeterministicAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DeterministicAttribute.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurabilityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurabilityProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableClientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableClientAttribute.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableEntityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableEntityStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableHttpClientFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableHttpRequest.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableHttpResponse.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableOrchestrationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableOrchestrationStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableTaskExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableTaskExtension.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/DurableTaskWebJobsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/DurableTaskWebJobsStartup.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EndToEndTraceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EndToEndTraceHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EntityQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EntityQuery.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EntityQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EntityQueryResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EntityScheduler/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EntityScheduler/Entity.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EntityScheduler/EntityId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EntityScheduler/EntityId.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EtwEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EtwEventSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/EventSourceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/EventSourceListener.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/FunctionFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/FunctionFailedException.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/FunctionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/FunctionName.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/FunctionNameWithVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/FunctionNameWithVersion.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/FunctionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/FunctionState.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/FunctionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/FunctionType.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Grpc/ILocalGrpcListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Grpc/ILocalGrpcListener.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Grpc/Protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Grpc/Protos/README.md -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Grpc/Protos/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Grpc/Protos/versions.txt -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/GuidManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/GuidManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HostLifecycleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HostLifecycleService.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HttpApiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HttpApiHandler.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HttpCreationPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HttpCreationPayload.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HttpHeadersConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HttpHeadersConverter.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HttpManagementPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HttpManagementPayload.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/HttpRetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/HttpRetryOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/IConnectionInfoResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/IConnectionInfoResolver.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/IConnectionStringResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/IConnectionStringResolver.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/IDurabilityProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/IDurabilityProviderFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/IPlatformInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/IPlatformInformation.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ITokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ITokenSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/LinuxAppServiceFileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/LinuxAppServiceFileLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/LinuxAppServiceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/LinuxAppServiceLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Listener/TaskActivityShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Listener/TaskActivityShim.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Listener/TaskCommonShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Listener/TaskCommonShim.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Listener/TaskEntityShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Listener/TaskEntityShim.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/LocalHttpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/LocalHttpListener.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ManagedIdentityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ManagedIdentityOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ManagedIdentityTokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ManagedIdentityTokenSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Options/DurableTaskOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Options/DurableTaskOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Options/HttpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Options/HttpOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Options/TraceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Options/TraceOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/OrchestrationRuntimeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/OrchestrationRuntimeStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/OutOfProcExceptionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/OutOfProcExceptionHelpers.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/OutOfProcMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/OutOfProcMiddleware.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/OverridableStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/OverridableStates.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ProtobufUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ProtobufUtils.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ProviderUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ProviderUtils.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/PurgeHistoryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/PurgeHistoryResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ReadOnlyConfigurationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ReadOnlyConfigurationValue.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/ReplaySafeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/ReplaySafeLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/RetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/RetryOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/RetryOptionsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/RetryOptionsConverter.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Scale/ScaleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Scale/ScaleUtils.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/StartOrchestrationArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/StartOrchestrationArgs.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/StatusResponsePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/StatusResponsePayload.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/Storage/NameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/Storage/NameValidator.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/TaskHubGrpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/TaskHubGrpcServer.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/TypedCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/TypedCodeProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/_CSharpLanguageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/_CSharpLanguageHelpers.cs -------------------------------------------------------------------------------- /src/WebJobs.Extensions.DurableTask/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/WebJobs.Extensions.DurableTask/app.config -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/.editorconfig -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/ActivityInputConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/ActivityInputConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/ActivityTriggerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/ActivityTriggerAttribute.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/Constants.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/DurableClientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/DurableClientAttribute.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/DurableTaskClientConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/DurableTaskClientConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/DurableTaskClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/DurableTaskClientExtensions.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/DurableTaskExtensionStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/DurableTaskExtensionStartup.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/EntityTriggerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/EntityTriggerAttribute.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/Execution/TriggerNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/Execution/TriggerNames.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/FunctionContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/FunctionContextExtensions.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/FunctionsDurableTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/FunctionsDurableTaskClient.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HTTP/DurableHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HTTP/DurableHttpRequest.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HTTP/DurableHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HTTP/DurableHttpResponse.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HTTP/HttpHeadersConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HTTP/HttpHeadersConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HTTP/HttpMethodConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HTTP/HttpMethodConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HTTP/HttpRetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HTTP/HttpRetryOptions.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/HttpManagementPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/HttpManagementPayload.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/ManagedIdentityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/ManagedIdentityOptions.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/ManagedIdentityTokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/ManagedIdentityTokenSource.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/ObjectConverterShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/ObjectConverterShim.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/OrchestrationInputConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/OrchestrationInputConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/TaskEntityDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/TaskEntityDispatcher.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/TaskFailureDetailsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/TaskFailureDetailsConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/TokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/TokenSource.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/TokenSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/TokenSourceConverter.cs -------------------------------------------------------------------------------- /src/Worker.Extensions.DurableTask/_CSharpLanguageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/src/Worker.Extensions.DurableTask/_CSharpLanguageHelpers.cs -------------------------------------------------------------------------------- /test/CodeGen.Example.Test/CalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.Example.Test/CalculatorTests.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/DurableFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/DurableFunctionTests.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/Models/CalculatorDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/Models/CalculatorDocument.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/Models/CompiledProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/Models/CompiledProject.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/SyntaxNodeUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/SyntaxNodeUtilityTests.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/Utils/ProjectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/Utils/ProjectUtility.cs -------------------------------------------------------------------------------- /test/CodeGen.SourceGenerator.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/CodeGen.SourceGenerator.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Common/BindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/BindingTests.cs -------------------------------------------------------------------------------- /test/Common/ClientFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/ClientFunctions.cs -------------------------------------------------------------------------------- /test/Common/CustomTestStorageAccountProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/CustomTestStorageAccountProvider.cs -------------------------------------------------------------------------------- /test/Common/DurableClientBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableClientBaseTests.cs -------------------------------------------------------------------------------- /test/Common/DurableClientMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableClientMock.cs -------------------------------------------------------------------------------- /test/Common/DurableHttpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableHttpTests.cs -------------------------------------------------------------------------------- /test/Common/DurableOptionsConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableOptionsConfigurationTests.cs -------------------------------------------------------------------------------- /test/Common/DurableTaskEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableTaskEndToEndTests.cs -------------------------------------------------------------------------------- /test/Common/DurableTaskHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableTaskHostExtensions.cs -------------------------------------------------------------------------------- /test/Common/DurableTaskLifeCycleNotificationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/DurableTaskLifeCycleNotificationTest.cs -------------------------------------------------------------------------------- /test/Common/HttpApiHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/HttpApiHandlerTests.cs -------------------------------------------------------------------------------- /test/Common/ITestHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/ITestHost.cs -------------------------------------------------------------------------------- /test/Common/InterfaceOverloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/InterfaceOverloadTests.cs -------------------------------------------------------------------------------- /test/Common/LogEventTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/LogEventTraceListener.cs -------------------------------------------------------------------------------- /test/Common/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/LogMessage.cs -------------------------------------------------------------------------------- /test/Common/MessageSorterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/MessageSorterTests.cs -------------------------------------------------------------------------------- /test/Common/MoqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/MoqExtensions.cs -------------------------------------------------------------------------------- /test/Common/OrchestrationStatusQueryConditionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/OrchestrationStatusQueryConditionTest.cs -------------------------------------------------------------------------------- /test/Common/OrchestrationVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/OrchestrationVersionTests.cs -------------------------------------------------------------------------------- /test/Common/ReadOnlyConfigurationValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/ReadOnlyConfigurationValueTests.cs -------------------------------------------------------------------------------- /test/Common/SimpleNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/SimpleNameResolver.cs -------------------------------------------------------------------------------- /test/Common/StandardConnectionInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/StandardConnectionInfoProviderTests.cs -------------------------------------------------------------------------------- /test/Common/StorageServiceClientProviderFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/StorageServiceClientProviderFactoryTests.cs -------------------------------------------------------------------------------- /test/Common/TestActivities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestActivities.cs -------------------------------------------------------------------------------- /test/Common/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestConstants.cs -------------------------------------------------------------------------------- /test/Common/TestDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestDataGenerator.cs -------------------------------------------------------------------------------- /test/Common/TestDurableClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestDurableClient.cs -------------------------------------------------------------------------------- /test/Common/TestDurableHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestDurableHttpRequest.cs -------------------------------------------------------------------------------- /test/Common/TestEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestEntities.cs -------------------------------------------------------------------------------- /test/Common/TestEntityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestEntityClasses.cs -------------------------------------------------------------------------------- /test/Common/TestEntityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestEntityClient.cs -------------------------------------------------------------------------------- /test/Common/TestFrameworkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestFrameworkTests.cs -------------------------------------------------------------------------------- /test/Common/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestHelpers.cs -------------------------------------------------------------------------------- /test/Common/TestHostShutdownNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestHostShutdownNotificationService.cs -------------------------------------------------------------------------------- /test/Common/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestLogger.cs -------------------------------------------------------------------------------- /test/Common/TestLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestLoggerProvider.cs -------------------------------------------------------------------------------- /test/Common/TestOrchestrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestOrchestrations.cs -------------------------------------------------------------------------------- /test/Common/TestStorageServiceClientProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/TestStorageServiceClientProviderFactory.cs -------------------------------------------------------------------------------- /test/Common/UnconstructibleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/UnconstructibleClass.cs -------------------------------------------------------------------------------- /test/Common/WebJobsConnectionInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/WebJobsConnectionInfoProviderTests.cs -------------------------------------------------------------------------------- /test/Common/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Common/xunit.runner.json -------------------------------------------------------------------------------- /test/DFPerfScenarios/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/Common.cs -------------------------------------------------------------------------------- /test/DFPerfScenarios/DFPerfScenarios.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/DFPerfScenarios.sln -------------------------------------------------------------------------------- /test/DFPerfScenarios/DFPerfScenariosV4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/DFPerfScenariosV4.csproj -------------------------------------------------------------------------------- /test/DFPerfScenarios/Tests/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/Tests/Counter.cs -------------------------------------------------------------------------------- /test/DFPerfScenarios/Tests/FanOutFanIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/Tests/FanOutFanIn.cs -------------------------------------------------------------------------------- /test/DFPerfScenarios/Tests/ManySequencesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/Tests/ManySequencesTest.cs -------------------------------------------------------------------------------- /test/DFPerfScenarios/Tests/SubOrchestrationFanOutFanIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/Tests/SubOrchestrationFanOutFanIn.cs -------------------------------------------------------------------------------- /test/DFPerfScenarios/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/host.json -------------------------------------------------------------------------------- /test/DFPerfScenarios/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/DFPerfScenarios/local.settings.json -------------------------------------------------------------------------------- /test/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/Directory.Packages.props -------------------------------------------------------------------------------- /test/FunctionsV2/AzureStorageDurabilityProviderFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/AzureStorageDurabilityProviderFactoryTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/AzureStorageOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/AzureStorageOptionsTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/CorrelationEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/CorrelationEndToEndTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/CustomEtwDurabilityProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/CustomEtwDurabilityProviderFactory.cs -------------------------------------------------------------------------------- /test/FunctionsV2/CustomStorageServiceClientProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/CustomStorageServiceClientProviderFactory.cs -------------------------------------------------------------------------------- /test/FunctionsV2/DurableTaskListenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/DurableTaskListenerTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/DurableTaskScaleMonitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/DurableTaskScaleMonitorTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/DurableTaskTargetScalerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/DurableTaskTargetScalerTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/EmulatorDurabilityProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/EmulatorDurabilityProviderFactory.cs -------------------------------------------------------------------------------- /test/FunctionsV2/EndToEndTraceHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/EndToEndTraceHelperTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/EntityDependencyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/EntityDependencyInjectionTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/EntityMethodDiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/EntityMethodDiscoveryTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/FunctionNameWithVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/FunctionNameWithVersionTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/GuidManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/GuidManagerTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/LocalGrpcListenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/LocalGrpcListenerTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/LongTimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/LongTimerTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/OutOfProcTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/OutOfProcTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/PlatformSpecificHelpers.FunctionsV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/PlatformSpecificHelpers.FunctionsV2.cs -------------------------------------------------------------------------------- /test/FunctionsV2/ProtobufUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/ProtobufUtilsTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/RedisDurabilityProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/RedisDurabilityProviderFactory.cs -------------------------------------------------------------------------------- /test/FunctionsV2/StorageProviderSelectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/StorageProviderSelectionTests.cs -------------------------------------------------------------------------------- /test/FunctionsV2/TestCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/TestCleanup.cs -------------------------------------------------------------------------------- /test/FunctionsV2/TestEntityWithDependencyInjectionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/TestEntityWithDependencyInjectionHelpers.cs -------------------------------------------------------------------------------- /test/FunctionsV2/TraceParentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/TraceParentTest.cs -------------------------------------------------------------------------------- /test/FunctionsV2/WebJobs.Extensions.DurableTask.Tests.V2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/FunctionsV2/WebJobs.Extensions.DurableTask.Tests.V2.csproj -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/.gitignore -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/Counter.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/Common.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/FanOutFanIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/FanOutFanIn.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/HelloWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/HelloWorld.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/LongSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/LongSequence.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/ManyInstancesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/ManyInstancesTest.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/MapReduceTripData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/MapReduceTripData.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/PurgeHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/PurgeHistory.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/DFPerfScenarios/QuickTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/DFPerfScenarios/QuickTest.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/Utils.cs -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/host.json -------------------------------------------------------------------------------- /test/PerfTests/DFPerfTests/perf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/DFPerfTests/perf.csproj -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/.funcignore -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/.gitignore -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/FanOutFanIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/FanOutFanIn/function.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/FanOutFanIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/FanOutFanIn/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/FanOutFanInOrchestration/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/FanOutFanInOrchestration/function.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/FanOutFanInOrchestration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/FanOutFanInOrchestration/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/Hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/Hello/function.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/Hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/Hello/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/ManyInstances/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/ManyInstances/function.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/ManyInstances/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/ManyInstances/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/SequentialOrchestration/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/SequentialOrchestration/function.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/SequentialOrchestration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/SequentialOrchestration/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/SharedUtils/validateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/SharedUtils/validateInput.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/SubOrchestrationFanOutFanIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/SubOrchestrationFanOutFanIn/index.js -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/extensions.csproj -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/host.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/package-lock.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/package.json -------------------------------------------------------------------------------- /test/PerfTests/JavaScript/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/JavaScript/proxies.json -------------------------------------------------------------------------------- /test/PerfTests/Python/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/.funcignore -------------------------------------------------------------------------------- /test/PerfTests/Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/.gitignore -------------------------------------------------------------------------------- /test/PerfTests/Python/FanOutFanIn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/FanOutFanIn/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/FanOutFanIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/FanOutFanIn/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/FanOutFanInOrchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/FanOutFanInOrchestrator/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/FanOutFanInOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/FanOutFanInOrchestrator/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/Hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/Hello/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/Hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/Hello/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/ManyInstances/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/ManyInstances/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/ManyInstances/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/ManyInstances/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/SequentialOrchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/SequentialOrchestrator/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/SequentialOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/SequentialOrchestrator/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/SubOrchestrationFanOutFanIn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/SubOrchestrationFanOutFanIn/__init__.py -------------------------------------------------------------------------------- /test/PerfTests/Python/SubOrchestrationFanOutFanIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/SubOrchestrationFanOutFanIn/function.json -------------------------------------------------------------------------------- /test/PerfTests/Python/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/extensions.csproj -------------------------------------------------------------------------------- /test/PerfTests/Python/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/host.json -------------------------------------------------------------------------------- /test/PerfTests/Python/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/proxies.json -------------------------------------------------------------------------------- /test/PerfTests/Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/requirements.txt -------------------------------------------------------------------------------- /test/PerfTests/Python/shared_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/PerfTests/Python/shared_utils/parse_and_validate_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/PerfTests/Python/shared_utils/parse_and_validate_input.py -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/MSSQL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/MSSQL/.gitignore -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/MSSQL/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/MSSQL/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/MSSQL/MSSQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/MSSQL/MSSQL.csproj -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/MSSQL/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/MSSQL/host.json -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/Netherite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/Netherite/.gitignore -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/Netherite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/Netherite/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/Netherite/Netherite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/Netherite/Netherite.csproj -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/Netherite/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/Netherite/Nuget.config -------------------------------------------------------------------------------- /test/SmokeTests/BackendSmokeTests/Netherite/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/BackendSmokeTests/Netherite/host.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Counter.cs -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/DirectInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/DirectInput.cs -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/GreetUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/GreetUser.cs -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Program.cs -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/DotNetIsolated/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/DotNetIsolated/host.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/.funcignore -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/.gitignore -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/Nuget.config -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/extensions.csproj -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/host.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/local.settings.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/package-lock.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/package.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJS/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJS/src/index.js -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/Nuget.config -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/build.gradle -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/extensions.csproj -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/host.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durableJava/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durableJava/local.settings.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/.gitignore -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Dockerfile -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Hello/__init__.py -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Hello/function.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Nuget.config -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Print/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Print/__init__.py -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/Print/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/Print/function.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/extensions.csproj -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/host.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/local.settings.json -------------------------------------------------------------------------------- /test/SmokeTests/OOProcSmokeTests/durablePy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/OOProcSmokeTests/durablePy/requirements.txt -------------------------------------------------------------------------------- /test/SmokeTests/e2e-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/SmokeTests/e2e-test.ps1 -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/ActivityTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/ActivityTimeout.cs -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/EntityTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/EntityTimeout.cs -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/HttpStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/HttpStart.cs -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/OrchestrationTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/OrchestrationTimeout.cs -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/TimeoutTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/TimeoutTests.csproj -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/host.json -------------------------------------------------------------------------------- /test/TimeoutTests/CSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/CSharp/local.settings.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /test/TimeoutTests/Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/.gitignore -------------------------------------------------------------------------------- /test/TimeoutTests/Python/ActivityTimeout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/ActivityTimeout/__init__.py -------------------------------------------------------------------------------- /test/TimeoutTests/Python/ActivityTimeout/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/ActivityTimeout/function.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/DurableFunctionsHttpStart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/DurableFunctionsHttpStart/__init__.py -------------------------------------------------------------------------------- /test/TimeoutTests/Python/DurableFunctionsHttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/DurableFunctionsHttpStart/function.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/EntityTimeout1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/EntityTimeout1/__init__.py -------------------------------------------------------------------------------- /test/TimeoutTests/Python/EntityTimeout1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/EntityTimeout1/function.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/Nuget.config -------------------------------------------------------------------------------- /test/TimeoutTests/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/README.md -------------------------------------------------------------------------------- /test/TimeoutTests/Python/SlowActivity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/SlowActivity/__init__.py -------------------------------------------------------------------------------- /test/TimeoutTests/Python/SlowActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/SlowActivity/function.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/SlowEntity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/SlowEntity/__init__.py -------------------------------------------------------------------------------- /test/TimeoutTests/Python/SlowEntity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/SlowEntity/function.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/extensions.csproj -------------------------------------------------------------------------------- /test/TimeoutTests/Python/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/host.json -------------------------------------------------------------------------------- /test/TimeoutTests/Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/TimeoutTests/Python/requirements.txt -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/ActivityErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/ActivityErrorHandling.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/ActivityInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/ActivityInputType.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/BasicDotNetIsolated.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/BasicDotNetIsolated.sln -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/ClassBasedEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/ClassBasedEntities.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/DistributedTracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/DistributedTracing.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/DistributedTracingEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/DistributedTracingEntities.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/EntityErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/EntityErrorHandling.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/ExternalEventOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/ExternalEventOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/HTTPFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/HTTPFeature.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/HelloCities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/HelloCities.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/LargeOutputOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/LargeOutputOrchestrator.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/OrchestrationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/OrchestrationQuery.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/Program.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/PurgeOrchestrationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/PurgeOrchestrationHistory.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/RestartOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/RestartOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/RewindOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/RewindOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/SuspendResumeOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/SuspendResumeOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/TerminateOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/TerminateOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/TestAsyncMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/TestAsyncMiddleware.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/TimeoutOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/TimeoutOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/VersionedOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/VersionedOrchestration.cs -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/app.csproj -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/host.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/local.settings.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicDotNetIsolated/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicDotNetIsolated/nuget.config -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/.gitignore -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/extensions.csproj -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/host.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/local.settings.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/nuget.config -------------------------------------------------------------------------------- /test/e2e/Apps/BasicJava/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicJava/pom.xml -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/.funcignore -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/.gitignore -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/extensions.csproj -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/host.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/local.settings.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/nuget.config -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/package-lock.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/package.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/Shared/ExceptionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/Shared/ExceptionTypes.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/ActivityErrorHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/ActivityErrorHandling.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/ActivityInputType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/ActivityInputType.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/ClassBasedEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/ClassBasedEntities.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/EntityErrorHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/EntityErrorHandling.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/HelloCities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/HelloCities.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/LargeOutputOrchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/LargeOutputOrchestrator.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/OrchestrationQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/OrchestrationQuery.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/RewindOrchestration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/RewindOrchestration.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/functions/TimeoutOrchestration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/functions/TimeoutOrchestration.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/src/index.ts -------------------------------------------------------------------------------- /test/e2e/Apps/BasicNode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicNode/tsconfig.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/.gitignore: -------------------------------------------------------------------------------- 1 | GlobalRetryCount.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/CatchActivityException/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/CatchActivityException/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/HelloCities/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/HelloCities/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/HelloCities/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/HelloCities/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/HelloCities_HttpStart/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/HelloCities_HttpStart/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckByteArray/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckByteArray/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckCustomClass/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckCustomClass/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckIntArray/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckIntArray/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckSingleByte/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckSingleByte/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckString/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckString/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/InputCheckString/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/InputCheckString/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/LargeOutputOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/LargeOutputOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/LongActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/LongActivity/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/LongActivity/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/LongActivity/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/LongRunningOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/LongRunningOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/RaiseComplexException/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/RaiseComplexException/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/RaiseException/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/RaiseException/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/RaiseException/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/RaiseException/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/ResumeInstance/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/ResumeInstance/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/ResumeInstance/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/ResumeInstance/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/RetryActivityFunction/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/RetryActivityFunction/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/SayHello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/SayHello/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/SayHello/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/SayHello/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/SimulatedWorkActivity/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/SimulatedWorkActivity/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/StartOrchestration/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/StartOrchestration/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/SuspendInstance/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/SuspendInstance/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/SuspendInstance/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/SuspendInstance/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/TerminateInstance/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/TerminateInstance/function.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/TerminateInstance/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/TerminateInstance/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/TimeoutOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/TimeoutOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/extensions.csproj -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/host.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/local.settings.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/nuget.config -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/profile.ps1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPowerShell/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPowerShell/requirements.psd1 -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/.gitignore -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/activity_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/activity_error_handling.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/activity_input_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/activity_input_type.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/class_based_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/class_based_entities.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/custom_exception_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/custom_exception_types.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/entity_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/entity_error_handling.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/extensions.csproj -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/external_event_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/external_event_orchestration.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/function_app.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/hello_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/hello_cities.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/host.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/large_output_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/large_output_orchestrator.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/local.settings.json -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/nuget.config -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/orchestration_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/orchestration_query.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/purge_orchestration_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/purge_orchestration_history.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/requirements.txt -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/suspend_resume_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/suspend_resume_orchestration.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/terminate_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/terminate_orchestration.py -------------------------------------------------------------------------------- /test/e2e/Apps/BasicPython/timeout_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Apps/BasicPython/timeout_orchestration.py -------------------------------------------------------------------------------- /test/e2e/Tests/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Constants.cs -------------------------------------------------------------------------------- /test/e2e/Tests/E2ETests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/E2ETests.csproj -------------------------------------------------------------------------------- /test/e2e/Tests/Fixtures/FixtureHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Fixtures/FixtureHelpers.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Fixtures/FunctionAppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Fixtures/FunctionAppFixture.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Fixtures/FunctionAppProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Fixtures/FunctionAppProcess.cs -------------------------------------------------------------------------------- /test/e2e/Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Helpers/DurableHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Helpers/DurableHelpers.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Helpers/HttpHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Helpers/HttpHelpers.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Helpers/TestLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Helpers/TestLoggerProvider.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Helpers/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Helpers/TestUtility.cs -------------------------------------------------------------------------------- /test/e2e/Tests/JobObjectRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/JobObjectRegistry.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/ITestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/ITestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/IsolatedTestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/IsolatedTestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/JavaTestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/JavaTestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/NodeTestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/NodeTestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/PowerShellTestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/PowerShellTestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Localizers/PythonTestLanguageLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Localizers/PythonTestLanguageLocalizer.cs -------------------------------------------------------------------------------- /test/e2e/Tests/TestCollections/FunctionAppCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/TestCollections/FunctionAppCollection.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/ActivityInputTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/ActivityInputTypeTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/ClassBasedEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/ClassBasedEntityTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/DistributedTracingEntitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/DistributedTracingEntitiesTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/DistributedTracingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/DistributedTracingTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/EntityVersioningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/EntityVersioningTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/ErrorHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/ErrorHandlingTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/ExternalEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/ExternalEventTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/HTTPFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/HTTPFeatureTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/HelloCitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/HelloCitiesTest.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/LargeOutputOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/LargeOutputOrchestratorTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/OrchestrationQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/OrchestrationQueryTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/PurgeInstancesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/PurgeInstancesTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/RestartOrchestrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/RestartOrchestrationTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/RewindOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/RewindOrchestratorTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/ScheduledOrchestrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/ScheduledOrchestrationTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/SuspendResumeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/SuspendResumeTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/TerminateOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/TerminateOrchestratorTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/TimeoutTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/Tests/VersioningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/Tests/VersioningTests.cs -------------------------------------------------------------------------------- /test/e2e/Tests/build-e2e-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/build-e2e-test.ps1 -------------------------------------------------------------------------------- /test/e2e/Tests/e2e-tests-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/e2e-tests-readme.md -------------------------------------------------------------------------------- /test/e2e/Tests/start-emulators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/start-emulators.ps1 -------------------------------------------------------------------------------- /test/e2e/Tests/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/test/e2e/Tests/test.runsettings -------------------------------------------------------------------------------- /tools/triageHelper/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/.funcignore -------------------------------------------------------------------------------- /tools/triageHelper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/.gitignore -------------------------------------------------------------------------------- /tools/triageHelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/README.md -------------------------------------------------------------------------------- /tools/triageHelper/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/function_app.py -------------------------------------------------------------------------------- /tools/triageHelper/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/host.json -------------------------------------------------------------------------------- /tools/triageHelper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-durable-extension/HEAD/tools/triageHelper/requirements.txt --------------------------------------------------------------------------------