-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from OrleansContrib/master - Releasing v0.3.0
- Loading branch information
Showing
75 changed files
with
896 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.ico filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using System.Reflection; | ||
using System.Reflection; | ||
|
||
[assembly: AssemblyCompany("OrleansContrib")] | ||
[assembly: AssemblyProduct("Orleans.Activities - https://github.com/OrleansContrib/Orleans.Activities")] | ||
[assembly: AssemblyCopyright("Copyright © OrleansContrib 2016")] | ||
[assembly: AssemblyCopyright("Copyright © 2016-2017 OrleansContrib")] | ||
|
||
[assembly: AssemblyVersion("0.2.0")] | ||
[assembly: AssemblyFileVersion("0.2.0")] | ||
[assembly: AssemblyInformationalVersion("0.2.0")] | ||
[assembly: AssemblyVersion("0.3.0")] | ||
[assembly: AssemblyFileVersion("0.3.0")] | ||
[assembly: AssemblyInformationalVersion("0.3.0")] |
18 changes: 18 additions & 0 deletions
18
src/Orleans.Activities.Test.Activities/IWorkflowCallbackInterfaceValueType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
using Orleans.Activities.Helpers; | ||
|
||
namespace Orleans.Activities.Test.Activities | ||
{ | ||
public interface IWorkflowCallbackInterfaceValueType | ||
{ | ||
Task<Func<Task<int>>> OnOperationWithParamsAsync(int receiveResult); | ||
Task<Func<Task>> OnOperationWithoutParamsAsync(); | ||
Task<Func<Task>> OnOperationThrowsBeginAsync(); | ||
Task<Func<Task>> OnOperationThrowsEndAsync(); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
src/Orleans.Activities.Test.Activities/IWorkflowInterfaceValueType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
using Orleans.Activities.Helpers; | ||
|
||
namespace Orleans.Activities.Test.Activities | ||
{ | ||
public interface IWorkflowInterfaceValueType | ||
{ | ||
Task<int> OperationWithParamsAsync(Func<Task<int>> requestResult); | ||
Task OperationWithoutParamsAsync(Func<Task> requestResult); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
src/Orleans.Activities.Test.Activities/WorkflowCallbackInterfaceOperationValueType.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<Activity mc:Ignorable="sap sap2010 sads" x:Class="Orleans.Activities.Test.Activities.WorkflowCallbackInterfaceOperationValueType" sap2010:ExpressionActivityEditor.ExpressionActivityEditor="C#" sap2010:WorkflowViewState.IdRef="Orleans.Activities.Test.Activities.WorkflowCallbackInterfaceOperation_1" | ||
xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" | ||
xmlns:local="clr-namespace:Orleans.Activities.Test.Activities" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:mca="clr-namespace:Microsoft.CSharp.Activities;assembly=System.Activities" | ||
xmlns:oa="clr-namespace:Orleans.Activities;assembly=Orleans.Activities" | ||
xmlns:sads="http://schemas.microsoft.com/netfx/2010/xaml/activities/debugger" | ||
xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" | ||
xmlns:sap2010="http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation" | ||
xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" | ||
xmlns:sco="clr-namespace:System.Collections.ObjectModel;assembly=mscorlib" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
<TextExpression.NamespacesForImplementation> | ||
<sco:Collection x:TypeArguments="x:String"> | ||
<x:String>System</x:String> | ||
<x:String>System.Collections.Generic</x:String> | ||
<x:String>System.Data</x:String> | ||
<x:String>System.Linq</x:String> | ||
<x:String>System.Text</x:String> | ||
</sco:Collection> | ||
</TextExpression.NamespacesForImplementation> | ||
<TextExpression.ReferencesForImplementation> | ||
<sco:Collection x:TypeArguments="AssemblyReference"> | ||
<AssemblyReference>Microsoft.CSharp</AssemblyReference> | ||
<AssemblyReference>System</AssemblyReference> | ||
<AssemblyReference>System.Activities</AssemblyReference> | ||
<AssemblyReference>System.Core</AssemblyReference> | ||
<AssemblyReference>System.Data</AssemblyReference> | ||
<AssemblyReference>System.Drawing</AssemblyReference> | ||
<AssemblyReference>System.Runtime.Serialization</AssemblyReference> | ||
<AssemblyReference>System.ServiceModel</AssemblyReference> | ||
<AssemblyReference>System.ServiceModel.Activities</AssemblyReference> | ||
<AssemblyReference>System.Xaml</AssemblyReference> | ||
<AssemblyReference>System.Xml</AssemblyReference> | ||
<AssemblyReference>System.Xml.Linq</AssemblyReference> | ||
<AssemblyReference>Orleans.Activities</AssemblyReference> | ||
<AssemblyReference>mscorlib</AssemblyReference> | ||
<AssemblyReference>Orleans.Activities.Test.Activities</AssemblyReference> | ||
</sco:Collection> | ||
</TextExpression.ReferencesForImplementation> | ||
<oa:WorkflowActivity x:TypeArguments="local:IWorkflowInterfaceValueType, local:IWorkflowCallbackInterfaceValueType" sap2010:WorkflowViewState.IdRef="WorkflowActivity`2_1"> | ||
<Parallel sap2010:WorkflowViewState.IdRef="Parallel_1"> | ||
<oa:SendRequestReceiveResponseScope sap2010:WorkflowViewState.IdRef="SendRequestReceiveResponseScope_2"> | ||
<Sequence sap2010:WorkflowViewState.IdRef="Sequence_3"> | ||
<oa:SendRequest sap2010:WorkflowViewState.IdRef="SendRequest_1" OperationName="IWorkflowCallbackInterfaceValueType.OnOperationWithoutParamsAsync" /> | ||
<oa:ReceiveResponse sap2010:WorkflowViewState.IdRef="ReceiveResponse_1" /> | ||
</Sequence> | ||
</oa:SendRequestReceiveResponseScope> | ||
<oa:SendRequestReceiveResponseScope sap2010:WorkflowViewState.IdRef="SendRequestReceiveResponseScope_3"> | ||
<Sequence sap2010:WorkflowViewState.IdRef="Sequence_4"> | ||
<Sequence.Variables> | ||
<Variable x:TypeArguments="x:Int32" Name="responseResult" /> | ||
</Sequence.Variables> | ||
<oa:SendRequest x:TypeArguments="x:Int32" sap2010:WorkflowViewState.IdRef="SendRequest`1_2" OperationName="IWorkflowCallbackInterfaceValueType.OnOperationWithParamsAsync" RequestParameter="42" /> | ||
<oa:ReceiveResponse x:TypeArguments="x:Int32" sap2010:WorkflowViewState.IdRef="ReceiveResponse`1_2"> | ||
<oa:ReceiveResponse.ResponseResult> | ||
<OutArgument x:TypeArguments="x:Int32"> | ||
<mca:CSharpReference x:TypeArguments="x:Int32">responseResult</mca:CSharpReference> | ||
</OutArgument> | ||
</oa:ReceiveResponse.ResponseResult> | ||
</oa:ReceiveResponse> | ||
<WriteLine sap2010:WorkflowViewState.IdRef="WriteLine_2"> | ||
<InArgument x:TypeArguments="x:String"> | ||
<mca:CSharpValue x:TypeArguments="x:String">responseResult.ToString()</mca:CSharpValue> | ||
</InArgument> | ||
</WriteLine> | ||
</Sequence> | ||
</oa:SendRequestReceiveResponseScope> | ||
</Parallel> | ||
<sads:DebugSymbol.Symbol>d4IBWjpcTG9jYWxcR2l0SHViXGxtYWd5YXJcT3JsZWFucy5BY3Rpdml0aWVzXHNyY1xPcmxlYW5zLkFjdGl2aXRpZXMuVGVzdC5BY3Rpdml0aWVzXFdvcmtmbG93Q2FsbGJhY2tJbnRlcmZhY2VPcGVyYXRpb25WYWx1ZVR5cGUueGFtbA4pA0cZAgEBKgVFEAIBAisHMCwCARIxB0QsAgEDLAkvFAIBGDIJQxQCAQktCy2fAQIBGi4LLlUCARk2CzbOAQIBEDcLPSACAQ0+C0IXAgEKNscBNssBAgEROhE6ZAIBDkAPQGYCAQs=</sads:DebugSymbol.Symbol> | ||
</oa:WorkflowActivity> | ||
<sap2010:WorkflowViewState.ViewStateManager> | ||
<sap2010:ViewStateManager> | ||
<sap2010:ViewStateData Id="SendRequest_1" sap:VirtualizedContainerService.HintSize="304,63" /> | ||
<sap2010:ViewStateData Id="ReceiveResponse_1" sap:VirtualizedContainerService.HintSize="304,22" /> | ||
<sap2010:ViewStateData Id="Sequence_3" sap:VirtualizedContainerService.HintSize="326,249"> | ||
<sap:WorkflowViewStateService.ViewState> | ||
<scg:Dictionary x:TypeArguments="x:String, x:Object"> | ||
<x:Boolean x:Key="IsExpanded">True</x:Boolean> | ||
</scg:Dictionary> | ||
</sap:WorkflowViewStateService.ViewState> | ||
</sap2010:ViewStateData> | ||
<sap2010:ViewStateData Id="SendRequestReceiveResponseScope_2" sap:VirtualizedContainerService.HintSize="352,505" /> | ||
<sap2010:ViewStateData Id="SendRequest`1_2" sap:VirtualizedContainerService.HintSize="315,89" /> | ||
<sap2010:ViewStateData Id="ReceiveResponse`1_2" sap:VirtualizedContainerService.HintSize="315,62" /> | ||
<sap2010:ViewStateData Id="WriteLine_2" sap:VirtualizedContainerService.HintSize="315,62" /> | ||
<sap2010:ViewStateData Id="Sequence_4" sap:VirtualizedContainerService.HintSize="337,417"> | ||
<sap:WorkflowViewStateService.ViewState> | ||
<scg:Dictionary x:TypeArguments="x:String, x:Object"> | ||
<x:Boolean x:Key="IsExpanded">True</x:Boolean> | ||
</scg:Dictionary> | ||
</sap:WorkflowViewStateService.ViewState> | ||
</sap2010:ViewStateData> | ||
<sap2010:ViewStateData Id="SendRequestReceiveResponseScope_3" sap:VirtualizedContainerService.HintSize="363,505" /> | ||
<sap2010:ViewStateData Id="Parallel_1" sap:VirtualizedContainerService.HintSize="869,551" /> | ||
<sap2010:ViewStateData Id="WorkflowActivity`2_1" sap:VirtualizedContainerService.HintSize="895,639" /> | ||
<sap2010:ViewStateData Id="Orleans.Activities.Test.Activities.WorkflowCallbackInterfaceOperation_1" sap:VirtualizedContainerService.HintSize="935,719" /> | ||
</sap2010:ViewStateManager> | ||
</sap2010:WorkflowViewState.ViewStateManager> | ||
</Activity> |
Oops, something went wrong.