Example #1
0
 public void MergeFrom(ApplicationMapping other) {
   if (other == null) {
     return;
   }
   if (other.application_ != null) {
     if (application_ == null) {
       application_ = new global::SkyWalking.NetworkProtocol.KeyWithIntegerValue();
     }
     Application.MergeFrom(other.Application);
   }
   _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Example #2
0
 public void MergeFrom(pb::CodedInputStream input) {
   uint tag;
   while ((tag = input.ReadTag()) != 0) {
     switch(tag) {
       default:
         _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
         break;
       case 10: {
         if (application_ == null) {
           application_ = new global::SkyWalking.NetworkProtocol.KeyWithIntegerValue();
         }
         input.ReadMessage(application_);
         break;
       }
     }
   }
 }