Ejemplo n.º 1
0
 public void OnRegistrationConfirmation(RegisteredReply reply)
 {
     ClientConfirmation(Confirmation.For(reply));
     SignalingStatus.IsRegistered = true;
     SignalingStatus.Avatar       = reply.Avatar;
     GetPeerList(new Message());
     _foregroundChannel?.OnSignaledRegistrationStatusUpdated();
 }
Ejemplo n.º 2
0
 public IAsyncAction OnRegistrationConfirmationAsync(RegisteredReply reply)
 {
     return(Task.Run(async() =>
     {
         await ClientConfirmationAsync(Confirmation.For(reply));
         SignalingStatus.IsRegistered = true;
         SignalingStatus.Avatar = reply.Avatar;
         await GetPeerListAsync(new Message());
         _foregroundChannel?.OnSignaledRegistrationStatusUpdatedAsync();
     }).AsAsyncAction());
 }
Ejemplo n.º 3
0
 public IAsyncAction OnRegistrationConfirmationAsync(RegisteredReply reply)
 {
     return(EnqueueMessage(reply).CastToAsyncAction());
 }
 public void OnRegistrationConfirmation(RegisteredReply reply)
 {
 }
 public IAsyncAction OnRegistrationConfirmationAsync(RegisteredReply reply)
 {
     return(Task.CompletedTask.CastToAsyncAction());
 }
 public void OnRegistrationConfirmation(RegisteredReply reply)
 {
     ClientConfirmation(Confirmation.For(reply));
 }
Ejemplo n.º 7
0
 public void OnRegistrationConfirmation(RegisteredReply reply)
 {
     EnqueueMessage(reply);
 }