Class QuarkusWebSocketConnectorCommonConfiguration
java.lang.Object
io.quarkus.reactivemessaging.http.runtime.QuarkusWebSocketConnectorCommonConfiguration
- Direct Known Subclasses:
QuarkusWebSocketConnectorIncomingConfiguration,QuarkusWebSocketConnectorOutgoingConfiguration
Extracts the common configuration for the
quarkus-websocket connector.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionQuarkusWebSocketConnectorCommonConfiguration(org.eclipse.microprofile.config.Config config) Creates a new QuarkusWebSocketConnectorCommonConfiguration. -
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.microprofile.config.Configconfig()protected <T> Optional<T> getFromAlias(String alias, Class<T> type) Retrieves the value stored for the given alias.protected <T> TgetFromAliasWithDefaultValue(String alias, Class<T> type, T defaultValue) Retrieves the value stored for the given alias.voidvalidate()
-
Field Details
-
config
protected final org.eclipse.microprofile.config.Config config
-
-
Constructor Details
-
QuarkusWebSocketConnectorCommonConfiguration
public QuarkusWebSocketConnectorCommonConfiguration(org.eclipse.microprofile.config.Config config) Creates a new QuarkusWebSocketConnectorCommonConfiguration.
-
-
Method Details
-
config
public org.eclipse.microprofile.config.Config config()- Returns:
- the connector configuration
-
getFromAlias
Retrieves the value stored for the given alias.- Type Parameters:
T- the targeted type- Parameters:
alias- the attribute alias, must not benullor blanktype- the targeted type- Returns:
- the configuration value for the given alias, empty if not set
-
getFromAliasWithDefaultValue
Retrieves the value stored for the given alias. Returns the default value if not present.- Type Parameters:
T- the targeted type- Parameters:
alias- the attribute alias, must not benullor blanktype- the targeted typedefaultValue- the default value- Returns:
- the configuration value for the given alias, empty if not set
-
getChannel
- Returns:
- the channel name
-
validate
public void validate()
-