WebFluxProperties

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

Constructors

Link copied to clipboard
@Autowired(required = false)
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 = ["128"]) var concurrency: Int = 128, @DefaultValue(value = ["4"]) var prefetch: Int = 4)
Link copied to clipboard
object Companion
Link copied to clipboard
data class GlobalError(@DefaultValue(value = ["true"]) var enabled: Boolean = true) : EnabledCapable
Link copied to clipboard
data class Query(@DefaultValue(value = ["1000"]) var maxListSize: Int = 1000, @DefaultValue(value = ["100"]) var maxPageSize: Int = 100, @DefaultValue(value = ["10000"]) var maxPageWindow: Long, @DefaultValue(value = ["128"]) var maxFilterNodes: Int = DEFAULT_MAX_FILTER_NODES, @DefaultValue(value = ["1000"]) var maxFilterValues: Int = 1000, @DefaultValue(value = ["true"]) var allowExpensiveOperators: Boolean = true, @DefaultValue(value = ["10s"]) var idleTimeout: Duration = Duration.ofSeconds(10))

Properties

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