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 (agentInfo_ == null) { agentInfo_ = new global::MLAgents.CommunicatorObjects.AgentInfoProto(); } input.ReadMessage(agentInfo_); break; } case 18: { if (actionInfo_ == null) { actionInfo_ = new global::MLAgents.CommunicatorObjects.AgentActionProto(); } input.ReadMessage(actionInfo_); break; } } } }
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 (agentInfo_ == null) { AgentInfo = new global::MLAgents.CommunicatorObjects.AgentInfoProto(); } input.ReadMessage(AgentInfo); break; } case 18: { if (actionInfo_ == null) { ActionInfo = new global::MLAgents.CommunicatorObjects.AgentActionProto(); } input.ReadMessage(ActionInfo); break; } } } }
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 (agentInfo_ == null) { AgentInfo = new global::MLAgents.CommunicatorObjects.AgentInfoProto(); } input.ReadMessage(AgentInfo); break; } case 18: { if (actionInfo_ == null) { ActionInfo = new global::MLAgents.CommunicatorObjects.AgentActionProto(); } input.ReadMessage(ActionInfo); break; } } } #endif }
public void MergeFrom(AgentInfoActionPairProto other) { if (other == null) { return; } if (other.agentInfo_ != null) { if (agentInfo_ == null) { agentInfo_ = new global::MLAgents.CommunicatorObjects.AgentInfoProto(); } AgentInfo.MergeFrom(other.AgentInfo); } if (other.actionInfo_ != null) { if (actionInfo_ == null) { actionInfo_ = new global::MLAgents.CommunicatorObjects.AgentActionProto(); } ActionInfo.MergeFrom(other.ActionInfo); } _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); }