예제 #1
0
 // 리스트에 로컬들을 넣기위한 작업
 public void Handle(MessageOfListViewUpdateLocalList updatedLocalID)
 {
     foreach (var client in _managerOfClients)
     {
         client.Value.LocalIDMap[updatedLocalID.AssignedLocalID] = false;
         client.Value.AssignedClientActor.Tell(new MonitorSearched(
                                                   updatedLocalID.AssignedLocalID,
                                                   updatedLocalID.AssignedLocalName));
     }
 }
예제 #2
0
 public void Handle(MessageOfListViewUpdateLocalList updatedLocal)
 {
     Context.Child("ClientServer").Tell(updatedLocal);
 }
예제 #3
0
 public void LocalToClient_Send_CreatedLocalID
     (MessageOfListViewUpdateLocalList updatedLocal)
 {
     Context.Child("ClientServer").Tell(updatedLocal);
 }