예제 #1
0
파일: TimeoutI.cs 프로젝트: Crysty-Yui/ice
 public override void holdAdapter(int to, Ice.Current current)
 {
     current.adapter.hold();
     ActivateAdapterThread act = new ActivateAdapterThread(current.adapter, to);
     Thread thread = new Thread(new ThreadStart(act.run));
     thread.Start();
 }
예제 #2
0
    public override void holdAdapter(int to, Ice.Current current)
    {
        current.adapter.hold();
        ActivateAdapterThread act = new ActivateAdapterThread(current.adapter, to);
        Thread thread             = new Thread(new ThreadStart(act.run));

        thread.Start();
    }