
com.ircclouds.irc.api.Callback Maven / Gradle / Ivy
package com.ircclouds.irc.api;
/**
* A callback that returns T on success and {@link Exception} on failure
*
* @author [email protected]
*
* @param
*/
public interface Callback extends ICallback
{
void onSuccess(T aObject);
void onFailure(Exception aExc);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy