Calway.Automation 0.9.13

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Calway.Automation --version 0.9.13
NuGet\Install-Package Calway.Automation -Version 0.9.13
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Calway.Automation" Version="0.9.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Calway.Automation --version 0.9.13
#r "nuget: Calway.Automation, 0.9.13"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Calway.Automation as a Cake Addin
#addin nuget:?package=Calway.Automation&version=0.9.13

// Install Calway.Automation as a Cake Tool
#tool nuget:?package=Calway.Automation&version=0.9.13

Calway.Automation

This library implements an Automation (Workflow/Statemachine) with strongly typed State

Usage

The main goal was to have a workflow in code where the state could be persisted (as json) in a database and based on the database record we could recreate the Automation and the State.

Create it in code

using Calway.Automation;

using ILoggerFactory factory = LoggerFactory.Create(builder => builder.AddConsole());
ILogger logger = factory.CreateLogger("EmailAutomation");

var automation = new EmailAutomation(logger);
automation.SetState(state => { 
	state.Email = "email@domain.com";
});
automation.NextStep();

Console.WriteLine(automation.LastStepResult.ToString());


public class EmailAutomationState 
{
	public string Email { get; set; }
	public DateTime FirstEmailSent { get; set; }
	public DateTime ReminderEmailSent { get; set; }
}

public class EmailAutomation : AutomationEngine<EmailAutomationState> 
{
	class FirstEmailStep: AutomationStep<EmailAutomationState>
	{
		public FirstEmailStep(string id, string name) : base(id, name)
        {
        }

		public override bool Action(EmailAutomationState state) 
		{
			// Add code to send the First Email
			state.FirstEmailSent = DateTime.UtcNow;
		}

		/// <summary>
		/// After sending the email we can wait for 14 days before we need to take action again. We could just check every day
		/// but when we already now that any Transition after this Step will be 14 days we can use that to optimize. Since not all
		/// transitions are based on time we need to choose a delay ourselves.
		/// </summary>
		public override DateTime? NextStepTriggerDate(EmailAutomationState state) => DateTime.UtcNow.AddDays(14);
	}

	class ReminderEmailStep: AutomationStep<EmailAutomationState>
	{
		public ReminderEmailStep(string id, string name) : base(id, name)
        {
        }

		public override bool Action(EmailAutomationState state) 
		{
			// Add code to send the Reminder Email
			state.ReminderEmailSent = DateTime.UtcNow;
		}

		/// <summary>
		/// After sending the reminder we will wait another 7 days
		/// </summary>
		public override DateTime? NextStepTriggerDate(EmailAutomationState state) => DateTime.UtcNow.AddDays(7);
	}

	/// <summary>
	/// After sending the First email we wait for 14 days before continuing.
	/// </summary>
	private bool ReminderEmailCondition(EmailAutomationState state) => state.FirstEmailSent < DateTime.UtcNow.AddDays(-14);

	public EmailAutomation(ILogger logger) : base(logger)
	{
		AddStep(new FirstEmailStep("first-email", "Send the first Email")
			AddConditionalTransition("reminder-email", ReminderEmailCondition);
		AddStep(new ReminderEmailStep("reminder-email", "Send a reminder Email");
	}
}

This automation start by sending an initial email, and then waits for 14 days before sending a reminder email and waiting 7 days before closing/ending this automation.

Reference

Configure options

Currently there are only two options that can be set.

  • MaxStepsPerExecution, which controls the total number of steps executed by calling Execute(). This is mainly done to prevent infinite loops since we don't have workflow step cycle detection yet. The default is 20.
  • SaveStepHistory, which controls where each step execution is logged in the AutomationState. This was added to be able to visualize how the automation was processed, but since complex automations might have loops that are executed multiple times this feature is turned off by default to prevent bloat in the AutomationState. By default is false.

Roadmap

These are features that are considered for adding

  • Step execution cycle detection. Static flow analysis won't work due to the flexible guard clauses. Together with StepHistory we might detect we are running in circles, but even then, due to the flexibility of the guard clauses this might not be possible. As an alternative we might detect loops and halt further execution similar to the MaxStepsPerExecution.

  • Investigate optimizing the AddStep flow. I don't like how each Step still have an Id and Name parameter in the constructor, we might as well hide that in the call to base. But this might the limit re-use of individual Steps

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.13 104 1/26/2024
0.9.11 166 11/30/2023
0.9.10 134 10/19/2023
0.9.9 126 9/7/2023
0.9.8 121 8/18/2023
0.9.7 117 8/18/2023
0.9.6 107 8/18/2023

* BREAKING: Add ILogger to constructor to support logging in Automations