Class QuarkusWebSocketConnectorIncomingConfiguration
- java.lang.Object
-
- io.quarkus.reactivemessaging.http.runtime.QuarkusWebSocketConnectorCommonConfiguration
-
- io.quarkus.reactivemessaging.http.runtime.QuarkusWebSocketConnectorIncomingConfiguration
-
public class QuarkusWebSocketConnectorIncomingConfiguration extends QuarkusWebSocketConnectorCommonConfiguration
Extract the incoming configuration for thequarkus-websocket
connector.
-
-
Field Summary
-
Fields inherited from class io.quarkus.reactivemessaging.http.runtime.QuarkusWebSocketConnectorCommonConfiguration
config
-
-
Constructor Summary
Constructors Constructor Description QuarkusWebSocketConnectorIncomingConfiguration(org.eclipse.microprofile.config.Config config)
Creates a new QuarkusWebSocketConnectorIncomingConfiguration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBufferSize()
Gets the buffer-size value from the configuration.String
getPath()
Gets the path value from the configuration.void
validate()
-
Methods inherited from class io.quarkus.reactivemessaging.http.runtime.QuarkusWebSocketConnectorCommonConfiguration
config, getChannel, getFromAlias, getFromAliasWithDefaultValue
-
-
-
-
Method Detail
-
getPath
public String getPath()
Gets the path value from the configuration. Attribute Name: path Description: The path of the endpoint Mandatory: yes- Returns:
- the path
-
getBufferSize
public String getBufferSize()
Gets the buffer-size value from the configuration. Attribute Name: buffer-size Description: Web socket endpoint buffers messages if a consumer is not able to keep up. This setting specifies the size of the buffer. Default Value: 8- Returns:
- the buffer-size
-
validate
public void validate()
- Overrides:
validate
in classQuarkusWebSocketConnectorCommonConfiguration
-
-