Package-level declarations

Types

Link copied to clipboard
@AutoConfiguration
@EnableConfigurationProperties(value = [CommandProperties::class])
class CommandAutoConfiguration
Link copied to clipboard
@AutoConfiguration
class CommandGatewayAutoConfiguration
Link copied to clipboard
@ConfigurationProperties(prefix = "wow.command")
class CommandProperties(var bus: BusProperties = BusProperties(), var idempotency: IdempotencyProperties = IdempotencyProperties())
Link copied to clipboard
@ConditionalOnProperty(value = ["wow.command.bus.local-first.enabled"], havingValue = "true", matchIfMissing = true)
annotation class ConditionalOnCommandLocalFirstEnabled
Link copied to clipboard
class IdempotencyProperties(@DefaultValue(value = ["true"]) var enabled: Boolean = true, var bloomFilter: IdempotencyProperties.BloomFilter = BloomFilter()) : EnabledCapable
Link copied to clipboard
class ServerCommandWaitEndpoint(hostAddressSupplier: HostAddressSupplier) : CommandWaitEndpoint, ApplicationListener<WebServerInitializedEvent>