Package io.vertx.core.spi
Interface VertxThreadFactory
-
- All Superinterfaces:
VertxServiceProvider
public interface VertxThreadFactory extends VertxServiceProvider
- Author:
- Tim Fox
-
-
Field Summary
Fields Modifier and Type Field Description static VertxThreadFactory
INSTANCE
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
init(io.vertx.core.internal.VertxBootstrap builder)
Let the provider initialize the Vert.x builder.default io.vertx.core.impl.VertxThread
newVertxThread(Runnable target, String name, boolean worker, long maxExecTime, TimeUnit maxExecTimeUnit)
-
-
-
Field Detail
-
INSTANCE
static final VertxThreadFactory INSTANCE
-
-
Method Detail
-
init
default void init(io.vertx.core.internal.VertxBootstrap builder)
Description copied from interface:VertxServiceProvider
Let the provider initialize the Vert.x builder.- Specified by:
init
in interfaceVertxServiceProvider
- Parameters:
builder
- the builder
-
-