January 2020
Intermediate to advanced
640 pages
16h 56m
English
A synchronous pipeline essentially processes one payload at a time. We could implement such a pipeline by creating a for loop that does the following:
Synchronous pipelines are great for workloads where payloads must always be processed in first-in-first-out (FIFO) fashion, a quite common case for event-driven architectures which, most of the time, operate under the assumption that events are always processed in a specific order.
As an example, let's say that we are trying to construct ...