Updated Proto files
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: bgs/low/pb/client/global_extensions/service_options.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#pragma warning disable 1591, 0612, 3021
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
@@ -34,8 +34,9 @@ namespace Bgs.Protocol {
|
||||
"IAEoCRIRCglpc19nbG9iYWwYCSABKAgiegoLU2VydmljZVR5cGUSFAoQU0VS",
|
||||
"VklDRV9UWVBFX1JQQxAAEhsKF1NFUlZJQ0VfVFlQRV9SUENfRElSRUNUEAES",
|
||||
"FgoSU0VSVklDRV9UWVBFX0VWRU5UEAISIAocU0VSVklDRV9UWVBFX0VWRU5U",
|
||||
"X0JST0FEQ0FTVBADIk0KEVNES1NlcnZpY2VPcHRpb25zEg8KB2luYm91bmQY",
|
||||
"X0JST0FEQ0FTVBADInoKEVNES1NlcnZpY2VPcHRpb25zEg8KB2luYm91bmQY",
|
||||
"ASABKAgSEAoIb3V0Ym91bmQYAiABKAgSFQoNdXNlX2NsaWVudF9pZBgDIAEo",
|
||||
"CBIZChFkZXByZWNhdGVkXzMyX2JpdBgEIAEoCBIQCghvYnNvbGV0ZRgFIAEo",
|
||||
"CDpbCg9zZXJ2aWNlX29wdGlvbnMSHy5nb29nbGUucHJvdG9idWYuU2Vydmlj",
|
||||
"ZU9wdGlvbnMYkL8FIAEoCzIfLmJncy5wcm90b2NvbC5CR1NTZXJ2aWNlT3B0",
|
||||
"aW9uczpfChNzZGtfc2VydmljZV9vcHRpb25zEh8uZ29vZ2xlLnByb3RvYnVm",
|
||||
@@ -46,7 +47,7 @@ namespace Bgs.Protocol {
|
||||
new pbr::FileDescriptor[] { global::Google.Protobuf.DescriptorReflection.Descriptor, },
|
||||
new pbr::GeneratedClrTypeInfo(null, new pb::Extension[] { ServiceOptionsExtensions.ServiceOptions_, ServiceOptionsExtensions.SdkServiceOptions }, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::Bgs.Protocol.BGSServiceOptions), global::Bgs.Protocol.BGSServiceOptions.Parser, new[]{ "DescriptorName", "Version", "ShardName", "ResolveClientInstance", "Type", "ApiType", "IsGlobal" }, null, new[]{ typeof(global::Bgs.Protocol.BGSServiceOptions.Types.ServiceType) }, null, null),
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::Bgs.Protocol.SDKServiceOptions), global::Bgs.Protocol.SDKServiceOptions.Parser, new[]{ "Inbound", "Outbound", "UseClientId" }, null, null, null, null)
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::Bgs.Protocol.SDKServiceOptions), global::Bgs.Protocol.SDKServiceOptions.Parser, new[]{ "Inbound", "Outbound", "UseClientId", "Deprecated32Bit", "Obsolete" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
@@ -492,6 +493,8 @@ namespace Bgs.Protocol {
|
||||
inbound_ = other.inbound_;
|
||||
outbound_ = other.outbound_;
|
||||
useClientId_ = other.useClientId_;
|
||||
deprecated32Bit_ = other.deprecated32Bit_;
|
||||
obsolete_ = other.obsolete_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -572,6 +575,54 @@ namespace Bgs.Protocol {
|
||||
_hasBits0 &= ~4;
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "deprecated_32_bit" field.</summary>
|
||||
public const int Deprecated32BitFieldNumber = 4;
|
||||
private readonly static bool Deprecated32BitDefaultValue = false;
|
||||
|
||||
private bool deprecated32Bit_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Deprecated32Bit {
|
||||
get { if ((_hasBits0 & 8) != 0) { return deprecated32Bit_; } else { return Deprecated32BitDefaultValue; } }
|
||||
set {
|
||||
_hasBits0 |= 8;
|
||||
deprecated32Bit_ = value;
|
||||
}
|
||||
}
|
||||
/// <summary>Gets whether the "deprecated_32_bit" field is set</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool HasDeprecated32Bit {
|
||||
get { return (_hasBits0 & 8) != 0; }
|
||||
}
|
||||
/// <summary>Clears the value of the "deprecated_32_bit" field</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void ClearDeprecated32Bit() {
|
||||
_hasBits0 &= ~8;
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "obsolete" field.</summary>
|
||||
public const int ObsoleteFieldNumber = 5;
|
||||
private readonly static bool ObsoleteDefaultValue = false;
|
||||
|
||||
private bool obsolete_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Obsolete {
|
||||
get { if ((_hasBits0 & 16) != 0) { return obsolete_; } else { return ObsoleteDefaultValue; } }
|
||||
set {
|
||||
_hasBits0 |= 16;
|
||||
obsolete_ = value;
|
||||
}
|
||||
}
|
||||
/// <summary>Gets whether the "obsolete" field is set</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool HasObsolete {
|
||||
get { return (_hasBits0 & 16) != 0; }
|
||||
}
|
||||
/// <summary>Clears the value of the "obsolete" field</summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void ClearObsolete() {
|
||||
_hasBits0 &= ~16;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as SDKServiceOptions);
|
||||
@@ -588,6 +639,8 @@ namespace Bgs.Protocol {
|
||||
if (Inbound != other.Inbound) return false;
|
||||
if (Outbound != other.Outbound) return false;
|
||||
if (UseClientId != other.UseClientId) return false;
|
||||
if (Deprecated32Bit != other.Deprecated32Bit) return false;
|
||||
if (Obsolete != other.Obsolete) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -597,6 +650,8 @@ namespace Bgs.Protocol {
|
||||
if (HasInbound) hash ^= Inbound.GetHashCode();
|
||||
if (HasOutbound) hash ^= Outbound.GetHashCode();
|
||||
if (HasUseClientId) hash ^= UseClientId.GetHashCode();
|
||||
if (HasDeprecated32Bit) hash ^= Deprecated32Bit.GetHashCode();
|
||||
if (HasObsolete) hash ^= Obsolete.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
@@ -622,6 +677,14 @@ namespace Bgs.Protocol {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteBool(UseClientId);
|
||||
}
|
||||
if (HasDeprecated32Bit) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteBool(Deprecated32Bit);
|
||||
}
|
||||
if (HasObsolete) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteBool(Obsolete);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
@@ -639,6 +702,12 @@ namespace Bgs.Protocol {
|
||||
if (HasUseClientId) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (HasDeprecated32Bit) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (HasObsolete) {
|
||||
size += 1 + 1;
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
@@ -659,6 +728,12 @@ namespace Bgs.Protocol {
|
||||
if (other.HasUseClientId) {
|
||||
UseClientId = other.UseClientId;
|
||||
}
|
||||
if (other.HasDeprecated32Bit) {
|
||||
Deprecated32Bit = other.Deprecated32Bit;
|
||||
}
|
||||
if (other.HasObsolete) {
|
||||
Obsolete = other.Obsolete;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
@@ -682,6 +757,14 @@ namespace Bgs.Protocol {
|
||||
UseClientId = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Deprecated32Bit = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
Obsolete = input.ReadBool();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user