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 | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 132 Rev 177
Line 11... Line 11...
11
 * When distributing the software, include this License Header Notice in each file.
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
12
 */
13
 
13
 
14
 package org.openconcerto.utils.cc;
14
 package org.openconcerto.utils.cc;
15
 
15
 
16
public class ClosureFuture<E, X extends Exception> extends TransformerFuture<E, Object, X> implements IClosureFuture<E, X> {
16
public class ClosureFuture<E, X extends Exception> extends TransformerFuture<E, Void, X> implements IClosureFuture<E, X> {
17
 
17
 
18
    public ClosureFuture(final IExnClosure<? super E, ? extends X> cl) {
18
    public ClosureFuture(final IExnClosure<? super E, ? extends X> cl) {
19
        super(new ITransformerExn<E, Object, X>() {
19
        super(new ITransformerExn<E, Void, X>() {
20
            @Override
20
            @Override
21
            public Object transformChecked(E input) throws X {
21
            public Void transformChecked(E input) throws X {
22
                cl.executeChecked(input);
22
                cl.executeChecked(input);
23
                return null;
23
                return null;
24
            }
24
            }
25
        });
25
        });
26
    }
26
    }