コード例 #1
0
 /// <summary>Wait for the service to finish.</summary>
 /// <remarks>
 /// Wait for the service to finish.
 /// (Normally, it runs forever.)
 /// </remarks>
 private void Join()
 {
     try
     {
         infoServer.Join();
     }
     catch (Exception ie)
     {
         Log.Debug("Exception ", ie);
     }
 }
コード例 #2
0
ファイル: WebAppProxy.cs プロジェクト: orf53975/hadoop.net
 public virtual void Join()
 {
     if (proxyServer != null)
     {
         try
         {
             proxyServer.Join();
         }
         catch (Exception)
         {
         }
     }
 }