The last group, concurrency patterns, contains patterns that are needed in the world of parallel programming. The following patterns belong to this group:
- Active object pattern: This pattern hides the concurrency by implementing asynchronous method inside an object, which serves as a scheduler for handling requests. It is not covered in this book.
- Binding properties pattern: This pattern combines multiple observers to force synchronization on properties in different objects. It is not covered in this book.
- Blockchain pattern: This provides a decentralized way for storing data in a linked list protected with cryptographic means. It is not covered in this book.
- Compute kernel pattern: This pattern executes the same calculation ...