Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/silenium-dev/kotlin-flow-graph
- Owner: silenium-dev
- Created: 2024-08-08T20:49:39.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T18:20:24.000Z (3 months ago)
- Last Synced: 2024-09-16T22:56:55.666Z (3 months ago)
- Topics: data-pipeline, data-processing, flow, graph, kotlin, kotlin-coroutines
- Language: Kotlin
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)