
org.kiwiproject.consul.async.ConsulResponseCallback Maven / Gradle / Ivy
package org.kiwiproject.consul.async;
import org.kiwiproject.consul.model.ConsulResponse;
/**
* For API calls that support long-polling, this callback is used to handle
* the result on success or failure for an async HTTP call.
*
* @param The Response type.
*/
public interface ConsulResponseCallback {
/**
* Callback for a successful {@link ConsulResponse}.
*
* @param consulResponse The Consul response.
*/
void onComplete(ConsulResponse consulResponse);
/**
* Callback for an unsuccessful request.
*
* @param throwable The exception thrown.
*/
void onFailure(Throwable throwable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy