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

com.softlayer.api.ResponseHandler Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api;

/** Interface for handling async method callbacks */
public interface ResponseHandler {

    /** Called when the method errored. This is NOT called when onSuccess errors. */
    public void onError(Exception ex);
    
    /** Called when the method succeeds. */
    public void onSuccess(T value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy