Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/silenium-dev/kotlin-flow-graph

Processing data in a graph-like flow
https://github.com/silenium-dev/kotlin-flow-graph

data-pipeline data-processing flow graph kotlin kotlin-coroutines

Last synced: about 2 months ago
JSON representation

Processing data in a graph-like flow

Awesome Lists containing this project

README

        

# kotlin-flow-graph

A simple flow graph implementation in Kotlin.
It allows you to create a graph of processing nodes that can be connected together to form a processing pipeline.

## Usage

Gradle:

```kotlin
repositories {
maven("https://repo.silenium.dev/releases")
}

dependencies {
implementation("dev.silenium.libs.flow-graph:kotlin-flow-graph:0.1.0")
}
```

Examples:

- [Simple](./examples/src/main/kotlin/dev/silenium/libs/flows/examples/Simple.kt)