provenance-eventstream-legacy-kotlin
A legacy Kotlin library for reading from the Provenance event stream.
Several services make use of the first iteration of the Provenance eventstream, specifically:
This library is an effort to consolidate the various copy-and-paste event streaming implementations (which are all basically the same), into a single location. This provides an easier migration path to the next iteration of provenance-event-stream.
Installation
Maven
<dependency>
<groupId>com.figure.legacy.provenance.eventstream</groupId>
<artifactId>provenance-eventstream-legacy</artifactId>
<version>${version}</version>
</dependency>
Gradle
Groovy
In build.gradle
:
implementation 'com.figure.legacy.provenance.eventstream:provenance-eventstream-legacy:${version}'
Kotlin
In build.gradle.kts
:
implementation("com.figure.legacy.provenance.eventstream:provenance-eventstream-legacy:${version}")