Dataflow Programming Pattern: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A Dataflow Programming Pattern is a programming pattern that models a program as a directed graph of the data flowing between operations, thus implementing dataf...") |
No edit summary |
||
Line 1: | Line 1: | ||
A [[Dataflow Programming Pattern]] is a [[programming pattern]] that models a program as a [[directed graph]] of the data flowing between operations, thus implementing [[dataflow]] principles and architecture. | A [[Dataflow Programming Pattern]] is a [[programming pattern]] that models a program as a [[directed graph]] of the data flowing between operations, thus implementing [[dataflow]] principles and architecture. | ||
* <B>Context:</B> | |||
** It can be supported by a [[Dataflow Programming Language]]. | |||
** ... | |||
* <B>Example(s):</B> | * <B>Example(s):</B> | ||
** [[Flow-Based Programming]]. | ** [[Flow-Based Programming]]. |
Revision as of 19:11, 23 February 2021
A Dataflow Programming Pattern is a programming pattern that models a program as a directed graph of the data flowing between operations, thus implementing dataflow principles and architecture.
- Context:
- It can be supported by a Dataflow Programming Language.
- ...
- Example(s):
- See: Jack Dennis, Computer Programming, Programming Paradigm, Directed Graph, Dataflow, Programming Language, Functional Language, Dataflow Architecture.
References
2021
- (Wikipedia, 2021) ⇒ https://en.wikipedia.org/wiki/dataflow_programming Retrieved:2021-2-23.
- In computer programming, dataflow programming is a programming paradigm that models a program as a directed graph of the data flowing between operations, thus implementing dataflow principles and architecture. Dataflow programming languages share some features of functional languages, and were generally developed in order to bring some functional concepts to a language more suitable for numeric processing. Some authors use the term datastream instead of dataflow to avoid confusion with dataflow computing or dataflow architecture, based on an indeterministic machine paradigm. Dataflow programming was pioneered by Jack Dennis and his graduate students at MIT in the 1960s.