连接

如何通过 Java SDK 连接 HStreamDB

前提条件

确保有一个运行中并可用的 HStreamDB

例子

  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. }