Interface ReactiveMessagingBuildTimeConfig


@ConfigRoot(phase=BUILD_TIME) @ConfigMapping(prefix="quarkus.messaging") public interface ReactiveMessagingBuildTimeConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Whether to enable the RequestScope context on a message context
    boolean
    Whether it should automatically configure the connector attribute of channels that don't have an upstream source (for incoming channels), or a downstream consumer (for outgoing channels).
    boolean
    Whether a health check is published in case the smallrye-health extension is present.
  • Method Details

    • healthEnabled

      @WithName("health.enabled") @WithDefault("true") boolean healthEnabled()
      Whether a health check is published in case the smallrye-health extension is present.
    • autoConnectorAttachment

      @WithName("auto-connector-attachment") @WithDefault("true") boolean autoConnectorAttachment()
      Whether it should automatically configure the connector attribute of channels that don't have an upstream source (for incoming channels), or a downstream consumer (for outgoing channels). When enabled, it verifies that there is only a single connector on the classpath. In that case, it automatically associates the orphans channel to the connector, removing the need to add the .connector attribute in the application configuration.
    • activateRequestScopeEnabled

      @WithName("request-scoped.enabled") @WithDefault("false") boolean activateRequestScopeEnabled()
      Whether to enable the RequestScope context on a message context