Skip to content

infinyon/fluvio-client-java

Folders and files

NameName
Last commit message
Last commit date
May 20, 2024
May 10, 2022
May 10, 2022
Feb 5, 2024
Sep 30, 2021
Aug 20, 2024
Mar 19, 2021
May 10, 2022
Feb 28, 2025
Feb 28, 2025
Mar 23, 2021
May 11, 2022
Jun 8, 2022
May 29, 2023
May 20, 2024
Mar 19, 2021
Mar 19, 2021
Apr 15, 2021

Repository files navigation

Fluvio Client for Java

Java binding for Fluvio streaming platform.

CI Fluvio Cloud CI License JavaDoc

Documentation

Fluvio client uses javadoc to generate the client API documentation.

Note: topic creation and deletion is not yet supported in this client.

Example Usage

Checkout our example project and our Simple.java.

Add com.infinyon:fluvio:+ as a dependency. The section should look something like:

dependencies {
    // Use JUnit test framework.
    testImplementation 'junit:junit:4.13'

    // This dependency is used by the application.
    implementation 'com.google.guava:guava:29.0-jre'

    implementation 'com.infinyon:fluvio:+'
}

Supported Platforms

Currently Fluvio Java client supports the following platforms:

  1. Linux/x86_64
  2. macOS/x86_64

Developer Notes

  • Ensure that JAVA_ROOT points to the base directory for the java installation. It's under /usr/lib/jvm/java-15-openjdk for archlinux depending on the version of java.

  • CI will run make test will test that the rust is linked correctly but does not test the connection to a fluvio cluster. To verify that things work, run make examples.

  • To publish, run the Publish CI.

  • The documentation on github pages is updated on every merge into main.