Exemplo n.º 1
0
 public TimerCallback(Action aCallback, TimerThread aTimerThread, Strand aStrand)
 {
     iCallback = aCallback;
     iTimerThread = aTimerThread;
     iStrand = aStrand;
 }
Exemplo n.º 2
0
 public AppsStateFactory(ITabStatusListener aTabListener, Func<DateTime> aClock, ServerTabTimeoutPolicy aTimeoutPolicy, UserList aUserList)
 {
     iAppsStateThread = new Strand();
     iTabStatusQueue = new TabStatusQueue(aTabListener);
     iTimeoutPolicy = aTimeoutPolicy;
     iUserList = aUserList;
     iClock = aClock;
     iTimerThread = new TimerThread(iClock);
 }