package com.juick.service.component; import org.springframework.context.event.EventListener; import org.springframework.scheduling.annotation.Async; public interface NotificationListener { @Async @EventListener void processSystemEvent(SystemEvent systemEvent); @Async @EventListener void processPingEvent(PingEvent pingEvent); }