saker.build
Documentation
TaskDoc
JavaDoc
Packages
nest.repository.support
saker.android
saker.apple
saker.build
saker.clang
saker.compiler.utils
saker.jar
saker.java.compiler
saker.java.testing
saker.maven.classpath
saker.maven.support
saker.msvc
saker.nest
saker.rmi
saker.sdk.support
saker.standard
saker.util
saker.windows
saker.zip
Home
Build trace
Sponsor
Blog
GitHub
JavaDoc
Packages
All classes
Constants
package
saker.build.thirdparty.saker.util.thread
@FunctionalInterface
public interface
ThreadUtils
.
ThrowingConsumer
<
T
>
Functional interface similar to
Consumer
, but is capable of throwing an arbitrary exception.
T
The type of the argument that this consumer works on.
Methods
public
void
accept
(
T
value
)
Executes the action for the given argument.
public abstract
void
accept
(
T
value
)
throws
Exception
Executes the action for the given argument.
value
The argument.
Exception
In case of failure.