Esempio n. 1
0
        public void MergeFrom(pb::CodedInputStream input)
        {
    #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
            input.ReadRawMessage(this);
    #else
            uint tag;
            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (commitTimestamp_ == null)
                    {
                        CommitTimestamp = new global::Google.Protobuf.WellKnownTypes.Timestamp();
                    }
                    input.ReadMessage(CommitTimestamp);
                    break;
                }

                case 18: {
                    if (commitStats_ == null)
                    {
                        CommitStats = new global::Google.Cloud.Spanner.V1.CommitResponse.Types.CommitStats();
                    }
                    input.ReadMessage(CommitStats);
                    break;
                }
                }
            }
    #endif
        }
Esempio n. 2
0
        void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
                    break;

                case 10: {
                    if (commitTimestamp_ == null)
                    {
                        CommitTimestamp = new global::Google.Protobuf.WellKnownTypes.Timestamp();
                    }
                    input.ReadMessage(CommitTimestamp);
                    break;
                }

                case 18: {
                    if (commitStats_ == null)
                    {
                        CommitStats = new global::Google.Cloud.Spanner.V1.CommitResponse.Types.CommitStats();
                    }
                    input.ReadMessage(CommitStats);
                    break;
                }
                }
            }
        }
Esempio n. 3
0
 public void MergeFrom(CommitResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.commitTimestamp_ != null)
     {
         if (commitTimestamp_ == null)
         {
             CommitTimestamp = new global::Google.Protobuf.WellKnownTypes.Timestamp();
         }
         CommitTimestamp.MergeFrom(other.CommitTimestamp);
     }
     if (other.commitStats_ != null)
     {
         if (commitStats_ == null)
         {
             CommitStats = new global::Google.Cloud.Spanner.V1.CommitResponse.Types.CommitStats();
         }
         CommitStats.MergeFrom(other.CommitStats);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }