RedisStateEventBus

class RedisStateEventBus(redisTemplate: ReactiveStringRedisTemplate, topicConverter: StateEventTopicConverter = DefaultStateEventTopicConverter, pollTimeout: Duration = Duration.ofSeconds(2)) : AbstractRedisMessageBus<StateEvent<*>, StateEventExchange<*>> , DistributedStateEventBus

Constructors

Link copied to clipboard
constructor(redisTemplate: ReactiveStringRedisTemplate, topicConverter: StateEventTopicConverter = DefaultStateEventTopicConverter, pollTimeout: Duration = Duration.ofSeconds(2))

Properties

Link copied to clipboard
open override val messageType: Class<StateEvent<*>>
Link copied to clipboard
open override val topicKind: TopicKind

Functions

Link copied to clipboard
open override fun close()
Link copied to clipboard
abstract fun receive(namedAggregates: Set<NamedAggregate>): Flux<StateEventExchange<*>>
Link copied to clipboard
abstract fun send(message: StateEvent<*>): Mono<Void>
Link copied to clipboard
open override fun StateEvent<*>.toExchange(acknowledgePublisher: Mono<Void>): StateEventExchange<*>