All Downloads are FREE. Search and download functionalities are using the official Maven repository.

marquez.client.Backend Maven / Gradle / Ivy

package marquez.client;

import java.io.Closeable;
import javax.annotation.Nullable;

/**
 * The backend contract for sending Marquez instrumentation. Information operations can be sent
 * synchronously or asynchronously over various protocols
 */
public interface Backend extends Closeable {

  void put(String path, String json);

  default void post(String path) {
    post(path, null);
  }

  void post(String path, @Nullable String json);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy