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