WebFluxProperties

@ConfigurationProperties(prefix = "wow.webflux")
class WebFluxProperties(@DefaultValue(value = ["true"]) var enabled: Boolean = true, var globalError: WebFluxProperties.GlobalError = GlobalError(), var batch: WebFluxProperties.Batch = Batch()) : EnabledCapable

Constructors

Link copied to clipboard
constructor(@DefaultValue(value = ["true"]) enabled: Boolean = true, globalError: WebFluxProperties.GlobalError = GlobalError(), batch: WebFluxProperties.Batch = Batch())

Types

Link copied to clipboard
data class Batch(@DefaultValue(value = ["1"]) var concurrency: Int = 1, @DefaultValue(value = ["1"]) var prefetch: Int = 1)
Link copied to clipboard
object Companion
Link copied to clipboard
data class GlobalError(@DefaultValue(value = ["true"]) var enabled: Boolean = true) : EnabledCapable

Properties

Link copied to clipboard
Link copied to clipboard
open override var enabled: Boolean
Link copied to clipboard