Kactoos

kactoos-jvm / nnl.rocks.kactoos.func / IoCheckedBiProc

IoCheckedBiProc

class IoCheckedBiProc<in X : Any, in Y : Any> : BiProc<X, Y>

BiProc that doesn’t throw checked Exception, but throws IOException instead.

There is no thread-safety guarantee.

Parameters

proc - Encapsulated func

X - Type of input

Y - Type of input

Since 0.22

Constructors

Name Summary
<init> IoCheckedBiProc(proc: BiProc<X, Y>)
BiProc that doesn’t throw checked Exception, but throws IOException instead.

Functions

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