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

com.stanfy.enroscar.goro.FutureObserver Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC5
Show newest version
package com.stanfy.enroscar.goro;

/**
 * Task execution result listener.
 *
 * @param  execution result type
 *
 * @author Roman Mazur - Stanfy (http://stanfy.com)
 */
public interface FutureObserver {

  void onSuccess(V value);

  void onError(Throwable error);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy