summaryrefslogtreecommitdiff
path: root/dicore3/core/src/main/java/io/dico/dicore/exceptions/checkedfunctions/CheckedBiConsumer.java
blob: bfcafe816cf8ee66a5de0975d0ceb73aa503db9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package io.dico.dicore.exceptions.checkedfunctions;

import io.dico.dicore.exceptions.ExceptionHandler;

import java.util.function.BiConsumer;

/**
 * checked mimic of {@link BiConsumer}
 *
 * @param <TParam1>
 * @param <TParam2>
 * @param <TException>
 */
@FunctionalInterface
public interface CheckedBiConsumer<TParam1, TParam2, TException extends Throwable>
        extends CheckedFunctionalObject<Void, TException>, BiConsumer<TParam1, TParam2> {
    
    /**
     * The consuming action
     *
     * @param t the first argument to consume
     * @param u the second argument to consume
     * @throws TException if an exception occurs
     */
    void checkedAccept(TParam1 t, TParam2 u) throws TException;
    
    /**
     * unchecked wrapper for {@link #checkedAccept(Object, Object)}
     * If a {@link TException} occurs, an unchecked one might be thrown by {@link #resultOnError(Throwable, Object...)}
     *
     * @param t the first input
     * @param u the second input
     * @see #checkedAccept(Object, Object)
     * @see #resultOnError(Throwable, Object...)
     */
    @Override
    default void accept(TParam1 t, TParam2 u) {
        try {
            checkedAccept(t, u);
        } catch (Throwable ex) {
            handleGenericException(ex, t, u);
        }
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    default CheckedBiConsumer<TParam1, TParam2, TException> handleExceptionsWith(ExceptionHandler handler) {
        return new CheckedBiConsumer<TParam1, TParam2, TException>() {
            @Override
            public void checkedAccept(TParam1 t, TParam2 u) throws TException {
                CheckedBiConsumer.this.checkedAccept(t, u);
            }
    
            @Override
            public Void handleGenericException(Throwable thrown, Object... args) {
                handler.handleGenericException(thrown, args);
                return null;
            }
    
            @Override
            public CheckedBiConsumer<TParam1, TParam2, TException> handleExceptionsWith(ExceptionHandler handler) {
                return CheckedBiConsumer.this.handleExceptionsWith(handler);
            }
        };
    }
    
}