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

com.byoutline.eventcallback.SuccessHandler Maven / Gradle / Ivy

package com.byoutline.eventcallback;

/**
 * Receives all success responses that match type.
 *
 * @param  Type of response that should be passed to this handler.
 * @author Sebastian Kacprzak  on 26.06.14.
 */
public interface SuccessHandler {
    void onCallSuccess(S response);
}