public bool IsConnected()
 {
     /*Debug.Log("IsConnected()");
      * Debug.Log("id=" + id);
      * Debug.Log("client=" + netmqTopicDataClient);
      * if (netmqTopicDataClient != null)
      * {
      *  Debug.Log("connected=" + netmqTopicDataClient.IsConnected());
      * }*/
     return(clientSpecification != null && clientSpecification.Id != null && netmqTopicDataClient != null && netmqTopicDataClient.IsConnected());
 }
示例#2
0
 public bool IsConnected()
 {
     return(clientSpecification != null && clientSpecification.Id != null && netmqTopicDataClient != null && netmqTopicDataClient.IsConnected());
 }