2using System.Threading.Tasks;
12 private readonly EventHandlerAsync<ResynchEventArgs> callback;
13 private readonly
string remoteFullJid;
14 private bool ok =
false;
24 this.callback = Callback;
35 public bool Ok => this.ok;
45 return this.callback.Raise(
this,
this);
Peer connection event arguments.
Task Done(bool Ok)
Method called by callback, to report that the synchronization succeeded (Ok =true),...
bool Ok
If the synchronization method succeeded (true) or failed (false).
string RemoteFullJid
JID of the remote end-point.
ResynchEventArgs(string RemoteFullJid, EventHandlerAsync< ResynchEventArgs > Callback)
Peer connection event arguments.