BAEL-7374 - Event Listener method rename

This commit is contained in:
Amol Gote 2024-02-17 12:45:01 -05:00
parent ec88f94427
commit 3ba11fcdba
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class UserEventListener {
@KafkaListener(id = Constants.LISTENER_ID, topics = Constants.MULTI_PARTITION_TOPIC, groupId = "test-group",
containerFactory = "kafkaListenerContainerFactory", autoStartup = "false")
public void userEventListener(UserEvent userEvent) {
public void processUserEvent(UserEvent userEvent) {
logger.info("Received UserEvent: " + userEvent.getUserEventId());
userEventStore.addUserEvent(userEvent);
}