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

com.quotemedia.streamer.client.OnResponse Maven / Gradle / Ivy

package com.quotemedia.streamer.client;

/**
 * Response callback function interface.
 */
public interface OnResponse {
    /**
     * Called when response is received.
     *
     * @param r the received response
     */
    void response(final R r);

    /**
     * Called if respond reception fails.
     *
     * @param e exception describing the error cause
     */
    void error(final Exception e);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy