Example #1
0
 private void displayNextMsgInvoker(GetNextMessageCallback getNextMsgCb)
 {
     DisplayNextMsgCallback cb = new DisplayNextMsgCallback(displayNextMsg);
     SafeInvoker si = new SafeInvoker(this);
     si.Invoke(cb, new object[] { getNextMsgCb });
 }
Example #2
0
 private void backupFinishedInvoker()
 {
     BackupFinishedCallback cb = new BackupFinishedCallback(backupFinished);
     SafeInvoker si = new SafeInvoker(this);
     si.Invoke(cb, new object[] {  });
 }