Change EventBus to Bus
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
package eventDemo.adapter.infrastructureLayer.event
|
||||
|
||||
import eventDemo.business.entity.GameId
|
||||
import eventDemo.business.event.GameEventBus
|
||||
import eventDemo.business.event.event.GameEvent
|
||||
import eventDemo.libs.event.EventBus
|
||||
import eventDemo.libs.event.EventBusInMemory
|
||||
import eventDemo.libs.bus.Bus
|
||||
import eventDemo.libs.bus.BusInMemory
|
||||
|
||||
class GameEventBusInMemory :
|
||||
GameEventBus(),
|
||||
EventBus<GameEvent, GameId> by EventBusInMemory()
|
||||
Bus<GameEvent> by BusInMemory()
|
||||
|
||||
Reference in New Issue
Block a user