Esempio n. 1
0
 private void _makeStable(LogRecord record)
 {
     foreach (IKeyValueBaseSlave<KeyImpl, ValueListImpl> c in clients)
     {
         c.LogApply(record);
     }
 }
Esempio n. 2
0
 public IAsyncResult BeginMakeStable(LogRecord record, AsyncCallback callback, object asyncState)
 {
     myDelegate del = new myDelegate(_makeStable);
     return del.BeginInvoke(record, callback, asyncState);
 }