// source: spine/server/delivery/delivery_events.proto
/**
* @fileoverview
* @enhanceable
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var spine_options_pb = require('../../../spine/options_pb.js');
goog.object.extend(proto, spine_options_pb);
var spine_server_delivery_delivery_pb = require('../../../spine/server/delivery/delivery_pb.js');
goog.object.extend(proto, spine_server_delivery_delivery_pb);
goog.exportSymbol('proto.spine.server.delivery.ShardProcessingRequested', null, global);
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.spine.server.delivery.ShardProcessingRequested = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.spine.server.delivery.ShardProcessingRequested, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.spine.server.delivery.ShardProcessingRequested.displayName = 'proto.spine.server.delivery.ShardProcessingRequested';
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.toObject = function(opt_includeInstance) {
return proto.spine.server.delivery.ShardProcessingRequested.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.spine.server.delivery.ShardProcessingRequested} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.spine.server.delivery.ShardProcessingRequested.toObject = function(includeInstance, msg) {
var f, obj = {
id: (f = msg.getId()) && spine_server_delivery_delivery_pb.ShardIndex.toObject(includeInstance, f)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.spine.server.delivery.ShardProcessingRequested}
*/
proto.spine.server.delivery.ShardProcessingRequested.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.spine.server.delivery.ShardProcessingRequested;
return proto.spine.server.delivery.ShardProcessingRequested.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.spine.server.delivery.ShardProcessingRequested} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.spine.server.delivery.ShardProcessingRequested}
*/
proto.spine.server.delivery.ShardProcessingRequested.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = new spine_server_delivery_delivery_pb.ShardIndex;
reader.readMessage(value,spine_server_delivery_delivery_pb.ShardIndex.deserializeBinaryFromReader);
msg.setId(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.spine.server.delivery.ShardProcessingRequested.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.spine.server.delivery.ShardProcessingRequested} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.spine.server.delivery.ShardProcessingRequested.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getId();
if (f != null) {
writer.writeMessage(
1,
f,
spine_server_delivery_delivery_pb.ShardIndex.serializeBinaryToWriter
);
}
};
/**
* optional ShardIndex id = 1;
* @return {?proto.spine.server.delivery.ShardIndex}
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.getId = function() {
return /** @type{?proto.spine.server.delivery.ShardIndex} */ (
jspb.Message.getWrapperField(this, spine_server_delivery_delivery_pb.ShardIndex, 1));
};
/**
* @param {?proto.spine.server.delivery.ShardIndex|undefined} value
* @return {!proto.spine.server.delivery.ShardProcessingRequested} returns this
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.setId = function(value) {
return jspb.Message.setWrapperField(this, 1, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.spine.server.delivery.ShardProcessingRequested} returns this
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.clearId = function() {
return this.setId(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.spine.server.delivery.ShardProcessingRequested.prototype.hasId = function() {
return jspb.Message.getField(this, 1) != null;
};
goog.object.extend(exports, proto.spine.server.delivery);
// Generated by Spine ProtoJs Plugin
let ObjectParser = require('../../../../client/parser/object-parser.js').default;
let TypeParsers = require('../../../../client/parser/type-parsers.js').default;
proto.spine.server.delivery.ShardProcessingRequested.Parser = function() {
ObjectParser.call(this);
};
proto.spine.server.delivery.ShardProcessingRequested.Parser.prototype = Object.create(ObjectParser.prototype);
proto.spine.server.delivery.ShardProcessingRequested.Parser.prototype.constructor = proto.spine.server.delivery.ShardProcessingRequested.Parser;
proto.spine.server.delivery.ShardProcessingRequested.Parser.prototype.fromObject = function(obj) {
if (obj === null) {
return null;
}
let msg = new proto.spine.server.delivery.ShardProcessingRequested();
if (obj.id !== undefined) {
if (obj.id === null) {
msg.setId(null);
} else {
let value = TypeParsers.parserFor('type.spine.io/spine.server.delivery.ShardIndex').fromObject(obj.id);
msg.setId(value);
}
}
return msg;
};
// Generated by Spine ProtoJs Plugin
proto.spine.server.delivery.ShardProcessingRequested.typeUrl = function() {
return 'type.spine.io/spine.server.delivery.ShardProcessingRequested';
};