public StaSynchronizationContext()
     : base()
 {
     mQueue = new BlockingQueue<SendOrPostCallbackItem>();
      mStaThread = new StaThread(mQueue);
      mStaThread.Start();
 }
Esempio n. 2
0
 public STASynchronizationContext()
     : base()
 {
     mFilum     = new BlockingFilum <SendOrPostCallbackItem>();
     mSTAThread = new StaThread(mFilum);
     mSTAThread.Start();
 }
Esempio n. 3
0
 public StaSynchronizationContext()
     : base()
 {
     mQueue     = new BlockingQueue <SendOrPostCallbackItem>();
     mStaThread = new StaThread(mQueue);
     mStaThread.Start();
 }