Connect

This page shows how to connect to HStreamDB using Java SDK.

Prerequisites

Make sure you have HStreamDB running and accessible.

Example

  1. package io.hstream.example;
  2. import io.hstream.*;
  3. public class ConnectExample {
  4. public static void main(String[] args) throws Exception {
  5. // need to replace the serviceUrl to "<Your HStreamDB server host>:<Your HStreamDB server port>",
  6. // you can also connect to multiple HStreamDB servers, as follows
  7. final String serviceUrl = "localhost:6570,localhost:6571,localhost:6572";
  8. HStreamClient client = HStreamClient.builder().serviceUrl(serviceUrl).build();
  9. System.out.println("Connected");
  10. client.close();
  11. }
  12. }