package org.onap.msb.apiroute.wrapper.consulextend.async; import com.orbitz.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 com.orbitz.consul.model.ConsulResponse}. * * @param consulResponse The Consul response. */ void onComplete(ConsulResponse consulResponse); /** * Callback for a successful {@link com.orbitz.consul.model.ConsulResponse}. * * @param consulResponse The Consul response. */ void onDelayComplete(OriginalConsulResponse originalConsulResponse); /** * Callback for an unsuccessful request. * * @param throwable The exception thrown. */ void onFailure(Throwable throwable); }