mostly, comments for the event system files; the event system stamp now determines how the out channel forms; some case class entities have become case object entities

This commit is contained in:
Fate-JH 2026-03-02 20:35:08 -05:00
parent de84e31547
commit 40d5721914
29 changed files with 331 additions and 116 deletions

View file

@ -46,7 +46,7 @@ class AvatarService3Test extends ActorTest {
"subscribe to a specific channel" in {
val service = system.actorOf(Props(classOf[AvatarService]), AvatarServiceTest.TestName)
service ! Service.Join("test")
service ! Service.Leave()
service ! Service.LeaveAll
assert(true)
}
}
@ -58,7 +58,7 @@ class AvatarService4Test extends ActorTest {
ServiceManager.boot(system)
val service = system.actorOf(Props(classOf[AvatarService]), AvatarServiceTest.TestName)
service ! Service.Join("test")
service ! Service.LeaveAll()
service ! Service.LeaveAll
assert(true)
}
}