Class DevModeInitializer
java.lang.Object
com.vaadin.base.devserver.startup.DevModeInitializer
- All Implemented Interfaces:
Serializable
Initializer for starting node updaters as well as the dev mode server.
For internal use only. May be renamed or removed in a future release.
- Since:
- 2.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DevModeHandlerinitDevModeHandler(Set<Class<?>> classes, VaadinContext context) Deprecated, for removal: This API element is subject to removal in a future version.static DevModeHandlerinitDevModeHandler(Set<Class<?>> classes, VaadinContext context, Executor taskExecutor) Initialize the devmode server if not in production mode or compatibility mode.
-
Constructor Details
-
DevModeInitializer
public DevModeInitializer()
-
-
Method Details
-
initDevModeHandler
@Deprecated(forRemoval=true) public static DevModeHandler initDevModeHandler(Set<Class<?>> classes, VaadinContext context) throws VaadinInitializerException Deprecated, for removal: This API element is subject to removal in a future version.useinitDevModeHandler(Set, VaadinContext, Executor)providing a custom executor.Initialize the devmode server if not in production mode or compatibility mode.
Uses common ForkJoin pool to execute asynchronous tasks. It is recommended to useinitDevModeHandler(Set, VaadinContext, Executor)and provide a a custom executor if initialization starts long-running tasks.- Parameters:
classes- classes to check for npm- and js modulescontext- VaadinContext we are running in- Returns:
- the initialized dev mode handler or
nullif none was created - Throws:
VaadinInitializerException- if dev mode can't be initialized
-
initDevModeHandler
public static DevModeHandler initDevModeHandler(Set<Class<?>> classes, VaadinContext context, Executor taskExecutor) throws VaadinInitializerException Initialize the devmode server if not in production mode or compatibility mode.- Parameters:
classes- classes to check for npm- and js modulescontext- VaadinContext we are running intaskExecutor- the executor to use for asynchronous execution- Returns:
- the initialized dev mode handler or
nullif none was created - Throws:
VaadinInitializerException- if dev mode can't be initialized
-
initDevModeHandler(Set, VaadinContext, Executor)providing a custom executor.