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

org.jgroups.blocks.executor.ExecutorNotification Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.jgroups.blocks.executor;

/**
 * @author wburns
 */
public interface ExecutorNotification {
    public void resultReturned(Object obj);
    
    public void throwableEncountered(Throwable t);
    
    public void interrupted(Runnable runnable);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy