Class GrizzlyServerContainer
java.lang.Object
org.glassfish.tyrus.spi.ServerContainerFactory
org.glassfish.tyrus.container.grizzly.server.GrizzlyServerContainer
Grizzly implementation of
ServerContainerFactory
and ServerContainer
.- Author:
- Danny Coward, Pavel Bucek
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateContainer
(Map<String, Object> properties) Create container delegate method.Methods inherited from class org.glassfish.tyrus.spi.ServerContainerFactory
createServerContainer, createServerContainer
-
Field Details
-
WORKER_THREAD_POOL_CONFIG
Server-side property to set custom workerThreadPoolConfig
.Value is expected to be instance of
ThreadPoolConfig
, can benull
(it won't be used).- See Also:
-
SELECTOR_THREAD_POOL_CONFIG
Server-side property to set custom selectorThreadPoolConfig
.Value is expected to be instance of
ThreadPoolConfig
, can benull
(it won't be used).- See Also:
-
-
Constructor Details
-
GrizzlyServerContainer
public GrizzlyServerContainer()
-
-
Method Details
-
createContainer
Description copied from class:ServerContainerFactory
Create container delegate method.Has to be implemented by
ServerContainerFactory
implementations.- Specified by:
createContainer
in classServerContainerFactory
- Parameters:
properties
- configuration passed to created server container.- Returns:
- new
ServerContainer
.
-