Change EventBus to Bus

This commit is contained in:
2025-04-14 23:39:55 +02:00
parent cd320b31da
commit 908cc888ad
4 changed files with 13 additions and 15 deletions
@@ -1,12 +1,11 @@
package eventDemo.business.event
import eventDemo.business.entity.GameId
import eventDemo.business.event.event.GameEvent
import eventDemo.libs.event.EventBus
import eventDemo.libs.bus.Bus
import java.util.UUID
abstract class GameEventBus :
EventBus<GameEvent, GameId>,
Bus<GameEvent>,
Comparable<GameEventBus> {
private val instanceId: UUID = UUID.randomUUID()