Skip to content

Commit a627810

Browse files
author
Connor McMahon
authored
Merge dev into master for v2.4.0 release
Merge dev into master for v2.4.0 Release
2 parents e662e79 + 165159e commit a627810

File tree

90 files changed

+4964
-657
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+4964
-657
lines changed

azure-pipelines.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
buildConfiguration: 'Debug'
1111

1212
steps:
13-
- task: NuGetToolInstaller@0
13+
- task: NuGetToolInstaller@1
1414

1515
- task: DotNetCoreCLI@2
1616
inputs:
@@ -37,6 +37,7 @@ jobs:
3737
rerunMaxAttempts: 2
3838
env:
3939
AzureWebJobsStorage: $(AzureWebJobsStorage)
40+
APPINSIGHTS_INSTRUMENTATIONKEY: $(APPINSIGHTS_INSTRUMENTATIONKEY)
4041

4142
- job: FunctionsV2Tests
4243
pool:
@@ -51,7 +52,7 @@ jobs:
5152
buildConfiguration: 'Debug'
5253

5354
steps:
54-
- task: NuGetToolInstaller@0
55+
- task: NuGetToolInstaller@1
5556

5657
- task: DotNetCoreCLI@2
5758
inputs:
@@ -78,6 +79,7 @@ jobs:
7879
rerunMaxAttempts: 2
7980
env:
8081
AzureWebJobsStorage: $(AzureWebJobsStorage)
82+
APPINSIGHTS_INSTRUMENTATIONKEY: $(APPINSIGHTS_INSTRUMENTATIONKEY)
8183

8284
- job: DurableAnalyzerTests
8385
pool:
@@ -89,7 +91,7 @@ jobs:
8991
buildConfiguration: 'Debug'
9092

9193
steps:
92-
- task: NuGetToolInstaller@0
94+
- task: NuGetToolInstaller@1
9395

9496
- task: DotNetCoreCLI@2
9597
inputs:
@@ -116,6 +118,7 @@ jobs:
116118
rerunMaxAttempts: 2
117119
env:
118120
AzureWebJobsStorage: $(AzureWebJobsStorage)
121+
APPINSIGHTS_INSTRUMENTATIONKEY: $(APPINSIGHTS_INSTRUMENTATIONKEY)
119122

120123
- job: PublishPipelineArtifact
121124
dependsOn:
@@ -132,7 +135,7 @@ jobs:
132135
buildConfiguration: 'Debug'
133136

134137
steps:
135-
- task: NuGetToolInstaller@0
138+
- task: NuGetToolInstaller@1
136139

137140
- task: DotNetCoreCLI@2
138141
inputs:

docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationContext.html

Lines changed: 12 additions & 61 deletions
Large diffs are not rendered by default.

docs/api/Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.html

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,53 +1473,6 @@ <h5 id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_ContinueAsNew_Sy
14731473
history of an orchestration instance.</p>
14741474
<p>Note that any unprocessed external events will be discarded when an orchestration
14751475
instance restarts itself using this method.</p>
1476-
</div>
1477-
<span class="small pull-right mobile-hide">
1478-
<span class="divider">|</span>
1479-
<a href="https://github.com/Azure/azure-functions-durable-extension/new/master/apiSpec/new?filename=Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_ContinueAsNew_System_Object_System_Boolean_.md&amp;value=---%0Auid%3A%20Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.ContinueAsNew(System.Object%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
1480-
</span>
1481-
<span class="small pull-right mobile-hide">
1482-
<a href="https://github.com/Azure/azure-functions-durable-extension/blob/master/src/WebJobs.Extensions.DurableTask/DurableOrchestrationContextBase.cs/#L471">View Source</a>
1483-
</span>
1484-
<a id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_ContinueAsNew_" data-uid="Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.ContinueAsNew*"></a>
1485-
<h4 id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_ContinueAsNew_System_Object_System_Boolean_" data-uid="Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.ContinueAsNew(System.Object,System.Boolean)">ContinueAsNew(Object, Boolean)</h4>
1486-
<div class="markdown level1 summary"><p>Restarts the orchestration by clearing its history.</p>
1487-
</div>
1488-
<div class="markdown level1 conceptual"></div>
1489-
<h5 class="decalaration">Declaration</h5>
1490-
<div class="codewrapper">
1491-
<pre><code class="lang-csharp hljs">public virtual void ContinueAsNew(object input, bool preserveUnprocessedEvents)</code></pre>
1492-
</div>
1493-
<h5 class="parameters">Parameters</h5>
1494-
<table class="table table-bordered table-striped table-condensed">
1495-
<thead>
1496-
<tr>
1497-
<th>Type</th>
1498-
<th>Name</th>
1499-
<th>Description</th>
1500-
</tr>
1501-
</thead>
1502-
<tbody>
1503-
<tr>
1504-
<td><span class="xref">System.Object</span></td>
1505-
<td><span class="parametername">input</span></td>
1506-
<td><p>The JSON-serializeable data to re-initialize the instance with.</p>
1507-
</td>
1508-
</tr>
1509-
<tr>
1510-
<td><span class="xref">System.Boolean</span></td>
1511-
<td><span class="parametername">preserveUnprocessedEvents</span></td>
1512-
<td><p>If set to <code>true</code>, re-adds any unprocessed external events into the new execution
1513-
history when the orchestration instance restarts. If <code>false</code>, any unprocessed
1514-
external events will be discarded when the orchestration instance restarts.</p>
1515-
</td>
1516-
</tr>
1517-
</tbody>
1518-
</table>
1519-
<h5 id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_ContinueAsNew_System_Object_System_Boolean__remarks">Remarks</h5>
1520-
<div class="markdown level1 remarks"><p>Large orchestration histories can consume a lot of memory and cause delays in
1521-
instance load times. This method can be used to periodically truncate the stored
1522-
history of an orchestration instance.</p>
15231476
</div>
15241477
<span class="small pull-right mobile-hide">
15251478
<span class="divider">|</span>
@@ -1755,7 +1708,7 @@ <h5 id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_NewGuid_remarks"
17551708
<a href="https://github.com/Azure/azure-functions-durable-extension/new/master/apiSpec/new?filename=Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_SetCustomStatus_System_Object_.md&amp;value=---%0Auid%3A%20Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.SetCustomStatus(System.Object)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
17561709
</span>
17571710
<span class="small pull-right mobile-hide">
1758-
<a href="https://github.com/Azure/azure-functions-durable-extension/blob/master/src/WebJobs.Extensions.DurableTask/DurableOrchestrationContextBase.cs/#L482">View Source</a>
1711+
<a href="https://github.com/Azure/azure-functions-durable-extension/blob/master/src/WebJobs.Extensions.DurableTask/DurableOrchestrationContextBase.cs/#L466">View Source</a>
17591712
</span>
17601713
<a id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_SetCustomStatus_" data-uid="Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.SetCustomStatus*"></a>
17611714
<h4 id="Microsoft_Azure_WebJobs_DurableOrchestrationContextBase_SetCustomStatus_System_Object_" data-uid="Microsoft.Azure.WebJobs.DurableOrchestrationContextBase.SetCustomStatus(System.Object)">SetCustomStatus(Object)</h4>

0 commit comments

Comments
 (0)