io.numaproj.numaflow.sink.SinkConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of numaflow-java Show documentation
Show all versions of numaflow-java Show documentation
SDK to implement Numaflow Source or User Defined Functions or Sinks in Java.
package io.numaproj.numaflow.sink;
class SinkConstants {
public static final String DEFAULT_SOCKET_PATH = "/var/run/numaflow/udsink.sock";
public static final int DEFAULT_MESSAGE_SIZE = 1024 * 1024 * 4;
public static final String SUCCESS = "SUCCESS";
public static final String EOF = "EOF";
}