Package io.vertx.core.spi
Interface FileResolverFactory
-
- All Superinterfaces:
VertxServiceProvider
public interface FileResolverFactory extends VertxServiceProvider
A factory for the pluggable file resolver SPI.- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract 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.FileResolver
resolver(VertxOptions options)
Create a newFileResolver
object.
-
-
-
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
-
resolver
FileResolver resolver(VertxOptions options)
Create a newFileResolver
object.- Parameters:
options
- the vertx configuration options- Returns:
- the file resolver
-
-