Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 860 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 860 Bytes

Active State Machine Example

Example Implementation of the Active State Machine pattern in .NET.

An Active State Machine is a state machine that performs transitions on a different thread as the code calling the state machine. This allows for multiple threads calling it via a synchronization queue.

Implementation Notes

References

  1. How to: Implement a Producer-Consumer Dataflow Pattern