Friday, September 27, 2013

Promise - Open hearth surgery


/**.
 *
 * An interface that executes a promise,
 * a request uppon a value on a near future.
 *
 * @josecanovamauger.
 */
package org.nanotek;

public interface Promise<F, W, H> {

public void executePromise(F when, W what, H how); //istouro sentado again.

}