public void NotifyDNotificationChangeset(DNotificationChangeset changeset) { try { _serviceListener?.Notify(changeset); } catch { } }
public void NotifyDNotificationChangeset(DNotificationChangeset changeset) { var callback = Callback; if (callback != null) { callback.NotifyDNotificationChangeset(changeset); } else { _scheduled.Enqueue(c => { c.NotifyDNotificationChangeset(changeset); }); } }
public void Notify(DNotificationChangeset changeset) { try { //_serverCallback.NotifyDNotificationChangeset(changeset); _notificationCompletionSource.SetResult(changeset); } catch (Exception ex) { if (ex != null) { } } }
public void NotifyDNotificationChangeset(DNotificationChangeset changeset) { }