Esempio n. 1
0
 public IApplicationTimer Get(
     bool bModalMode,
     int timerInterval,
     ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new GtkApplicationTimer((uint)timerInterval, timerTickDelegate));
 }
Esempio n. 2
0
 IPlasticTimer IThreadWaiterBuilder.GetTimer(
     int timerIntervalMilliseconds, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(mPlasticTimerBuilder.Get(false, timerIntervalMilliseconds, timerTickDelegate));
 }
Esempio n. 3
0
 public IApplicationTimer Get(
     bool bModalMode,
     ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new GtkApplicationTimer(DEFAULT_TIMER_INTERVAL, timerTickDelegate));
 }
Esempio n. 4
0
 internal GtkApplicationTimer(
     uint timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     mTimerInterval     = timerInterval;
     mTimerTickDelegate = timerTickDelegate;
 }
 IApplicationTimer IApplicationTimerBuilder.Get(
     bool bModalMode, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new MacApplicationTimer(DEFAULT_TIMER_INTERVAL, timerTickDelegate));
 }
Esempio n. 6
0
 public IPlasticTimer Get(bool bModalMode, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new UnityPlasticTimer(DEFAULT_TIMER_INTERVAL, timerTickDelegate));
 }
 internal MacApplicationTimer(
     double timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     mTimerInterval     = timerInterval;
     mTimerTickDelegate = timerTickDelegate;
 }
Esempio n. 8
0
 public UnityPlasticTimer(int timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     mTimerInterval     = timerInterval;
     mTimerTickDelegate = timerTickDelegate;
 }
Esempio n. 9
0
 public IPlasticTimer Get(bool bModalMode, int timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new UnityPlasticTimer(timerInterval, timerTickDelegate));
 }
Esempio n. 10
0
 public IPlasticTimer Get(bool bModalMode, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new MacPlasticTimer(
                bModalMode, 0.05, timerTickDelegate));
 }
Esempio n. 11
0
 internal MacPlasticTimer(bool bModalMode, double timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     mbModalMode        = bModalMode;
     mTimerInterval     = timerInterval;
     mTimerTickDelegate = timerTickDelegate;
 }
Esempio n. 12
0
 public IPlasticTimer Get(bool bModalMode, int timerInterval, ThreadWaiter.TimerTick timerTickDelegate)
 {
     return(new MacPlasticTimer(bModalMode, timerInterval / 1000f, timerTickDelegate));
 }