OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 132 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 132 Rev 177
Line 22... Line 22...
22
 * 
22
 * 
23
 * @see ClosureFuture
23
 * @see ClosureFuture
24
 * @param <E> The parameter type for the <tt>executeChecked</tt> method
24
 * @param <E> The parameter type for the <tt>executeChecked</tt> method
25
 * @param <X> The type of exception thrown by the <tt>executeChecked</tt> method
25
 * @param <X> The type of exception thrown by the <tt>executeChecked</tt> method
26
 */
26
 */
27
public interface IClosureFuture<E, X extends Exception> extends Future<Object>, IExnClosure<E, X> {
27
public interface IClosureFuture<E, X extends Exception> extends Future<Void>, IExnClosure<E, X> {
28
 
28
 
29
}
29
}