Kactoos

kactoos-jvm / nnl.rocks.kactoos / BiProc

BiProc

interface BiProc<in X : Any, in Y : Any>

Proc that accepts two arguments.

Since 0.2

Functions

Name Summary
exec abstract fun exec(first: X, second: Y): Unit
Execute it.

Inheritors

Name Summary
BiProcOf class BiProcOf<in X : Any, in Y : Any> : BiProc<X, Y>
Func as BiProc.
CheckedBiProc class CheckedBiProc<X : Any, Y : Any, E> : BiProc<X, Y>
BiProc that throws exception of specified type.
IoCheckedBiProc class IoCheckedBiProc<in X : Any, in Y : Any> : BiProc<X, Y>
BiProc that doesn’t throw checked Exception, but throws IOException instead.
UncheckedBiProc class UncheckedBiProc<in X : Any, in Y : Any> : BiProc<X, Y>
BiProc that doesn’t throw checked Exception.