com.ecwid.consul.v1.event.EventClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consul-api Show documentation
Show all versions of consul-api Show documentation
Java client for Consul HTTP API (http://consul.io)
package com.ecwid.consul.v1.event;
import com.ecwid.consul.v1.QueryParams;
import com.ecwid.consul.v1.Response;
import com.ecwid.consul.v1.event.model.Event;
import com.ecwid.consul.v1.event.model.EventParams;
import java.util.List;
/**
* @author Vasily Vasilkov ([email protected])
*/
public interface EventClient {
public Response eventFire(String event, String payload, EventParams eventParams, QueryParams queryParams);
public Response> eventList(QueryParams queryParams);
public Response> eventList(String event, QueryParams queryParams);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy