Beispiel #1
0
 public override void Start(int port)
 {
     mHisProcess = new HisDataServerProcess()
     {
         Parent = this
     };
     mRealProcess = new RealDataServerProcess()
     {
         Parent = this
     };
     mInfoProcess = new TagInfoServerProcess()
     {
         Parent = this
     };
     mHisProcess.Start();
     mRealProcess.Start();
     mInfoProcess.Start();
     base.Start(port);
     mIsRunning = true;
 }