Popularity
3.1
Growing
Activity
0.0
Stable
54
2
8

Programming language: Go
License: BSD 3-clause "New" or "Revised" License

flowgraph alternatives and similar packages

Based on the "Distributed Systems" category.
Alternatively, view flowgraph alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of flowgraph or a related project?

Add another 'Distributed Systems' Package

README

flowgraph

Getting Started

go get -u github.com/vectaport/flowgraph
go test

Links

Overview

Flowgraphs are built out of hubs interconnected by streams. The hubs are implemented with goroutines that use select to wait on incoming data or back-pressure handshakes. The data and handshakes travel on streams implemented with channels of empty interfaces for forward flow (interface{}) and channels of empty structs for back-pressure (struct{}).

The user of this package is completely isolated from the details of using goroutines, channels, and select, and only has to provide the empty interface functions that transform incoming data into outgoing data as needed for each hub of the flowgraph under construction. It includes the ability to log each data flow and transformation at the desired level of detail for debugging and monitoring purposes.

The package allows for correct-by-construction dataflow systems that avoid deadlock and gridlock by using back-pressure to manage empty space. It also supports looping constructs that can operate at the same efficiency as pipeline structures using channel buffering within the loop.

All of this is made available with an API designed to directly underlie a future HDL for a flowgraph language.