Class Builder
- java.lang.Object
-
- org.apache.sshd.common.util.closeable.Builder
-
- All Implemented Interfaces:
Supplier<Closeable>
,ObjectBuilder<Closeable>
public final class Builder extends Object implements ObjectBuilder<Closeable>
- Author:
- Apache MINA SSHD Project
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Closeable
build()
Builder
close(Closeable c)
Builder
parallel(Object id, Iterable<? extends Closeable> closeables)
Builder
parallel(Closeable... closeables)
Builder
run(Object id, Runnable r)
Builder
sequential(Object id, Iterable<Closeable> closeables)
Builder
sequential(Closeable... closeables)
<T extends SshFuture>
Builderwhen(Object id, Iterable<? extends SshFuture<T>> futures)
<T extends SshFuture>
Builderwhen(SshFuture<T> future)
<T extends SshFuture>
Builderwhen(SshFuture<T>... futures)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.sshd.common.util.ObjectBuilder
get
-
-
-
-
Constructor Detail
-
Builder
public Builder(Object lock)
-
-