UserEventKafkaPublisher

@KafkaClient
abstract class UserEventKafkaPublisher

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
@Topic(value = ["user-created"])
abstract fun onUserCreated(event: UserCreatedEvent)
Link copied to clipboard
@Topic(value = ["user-logged-in"])
abstract fun onUserLoggedInEvent(event: UserLoggedInEvent)
Link copied to clipboard
@Topic(value = ["user-logged-out"])
abstract fun onUserLoggedOutEvent(event: UserLoggedOutEvent)
Link copied to clipboard
@Topic(value = ["user-updated"])
abstract fun onUserUpdatedEvent(event: UserUpdatedEvent)