Verwenden von Aktivitätserweiterungen
Aktivitäten können mit Erweiterungen von Workflowanwendungen interagieren, die es dem Host ermöglichen, weitere Funktionen bereitzustellen, die nicht explizit im Workflow modelliert wurden. In diesem Thema wird beschrieben, wie eine Erweiterung erstellt und verwendet wird, mit der die Häufigkeit der Ausführung einer Aktivität erfasst werden kann.
So verwenden Sie die Aktivitätserweiterung zum Erfassen der Häufigkeit der Ausführung
Öffnen Sie Visual Studio 2010. Wählen Sie Neu und dann Projekt aus. Wählen Sie unter dem Knoten Visual C# den Eintrag Workflow aus. Wählen Sie in der Liste der Vorlagen Workflow-Konsolenanwendung aus. Benennen Sie das Projekt mit
Extensions
. Klicken Sie auf OK, um das Projekt zu erstellen.Fügen Sie in der Datei „Program.cs“ eine
using
-Anweisung für den Namespace System.Collections.Generic hinzu.using System.Collections.Generic;
Erstellen Sie in der Datei „Program.cs“ eine neue Klasse mit dem Namen ExecutionCountExtension. Mit dem folgenden Code wird eine Workflowerweiterung zur Nachverfolgung von Instanz-IDs beim Aufrufen der Register-Methode erstellt.
// This extension collects a list of workflow Ids public class ExecutionCountExtension { IList<Guid> instances = new List<Guid>(); public int ExecutionCount { get { return this.instances.Count; } } public IEnumerable<Guid> InstanceIds { get { return this.instances; } } public void Register(Guid activityInstanceId) { if (!this.instances.Contains<Guid>(activityInstanceId)) { instances.Add(activityInstanceId); } } }
Erstellen Sie eine Aktivität, die die ExecutionCountExtension verwendet. Mit dem folgenden Code wird eine Aktivität definiert, die das ExecutionCountExtension-Objekt von der Runtime abruft und bei Ausführung der Aktivität die zugehörige Register-Methode ausführt.
// Activity that consumes an extension provided by the host. If the extension is available // in the context, it will invoke (in this case, registers the Id of the executing workflow) public class MyActivity: CodeActivity { protected override void Execute(CodeActivityContext context) { ExecutionCountExtension ext = context.GetExtension<ExecutionCountExtension>(); if (ext != null) { ext.Register(context.WorkflowInstanceId); } } }
Implementieren Sie die Aktivität in der Main-Methode der Datei „program.cs“. Der folgende Code enthält Methoden, mit denen zwei unterschiedliche Workflows generiert, die Workflows mehrfach ausgeführt und die resultierenden Daten in der Erweiterung angezeigt werden.
class Program { // Creates a workflow that uses the activity that consumes the extension static Activity CreateWorkflow1() { return new Sequence { Activities = { new MyActivity() } }; } // Creates a workflow that uses two instances of the activity that consumes the extension static Activity CreateWorkflow2() { return new Sequence { Activities = { new MyActivity(), new MyActivity() } }; } static void Main(string[] args) { // create the extension ExecutionCountExtension executionCountExt = new ExecutionCountExtension(); // configure the first invoker and execute 3 times WorkflowInvoker invoker = new WorkflowInvoker(CreateWorkflow1()); invoker.Extensions.Add(executionCountExt); invoker.Invoke(); invoker.Invoke(); invoker.Invoke(); // configure the second invoker and execute 2 times WorkflowInvoker invoker2 = new WorkflowInvoker(CreateWorkflow2()); invoker2.Extensions.Add(executionCountExt); invoker2.Invoke(); invoker2.Invoke(); // show the data in the extension Console.WriteLine("Executed {0} times", executionCountExt.ExecutionCount); executionCountExt.InstanceIds.ToList().ForEach(i => Console.WriteLine("...{0}", i)); } }