Skip to content

Instantly share code, notes, and snippets.

System Architecture Course

This course provides a structured approach for designing and implementing large systems that are scalable and highly available.

The challenges designing and building large systems are in how they are decomposed and communicate with each other. You will learn how to define boundaries based on business capabilities and implement asynchronous messaging for communication.

This course will show architectural patterns and styles that create a system that is resilient when failures occur. And when load and traffic increases are scalable horizontally on-demand as required.

I've developed this course based on my over two decades of experience designing and developing business systems in distribution, transportation, manufacturing, and accounting.

@kpko
kpko / SynchronousExecutionUtility.cs
Created December 31, 2018 16:08
Utility class to execute a workflow synchronously via WorkflowCore
public class SynchronousWorkflowExecutionResult
{
public string WorkflowId { get; set; }
public string WorkflowInstanceId { get; set; }
public string Reference { get; set; }
public LifeCycleEvent LastLifeCycleEvent { get; set; }
}
public class SynchronousWorkflowExecutionUtility
{