コード例 #1
0
 internal void Connect(Aeron.Aeron aeron)
 {
     if (null == _responsePublication)
     {
         try
         {
             _responsePublication = aeron.AddPublication(ResponseChannel, ResponseStreamId);
         }
         catch (RegistrationException ex)
         {
             _clusteredServiceAgent.HandleError(ex);
         }
     }
 }