@toitware/api
Version:
Toitware API library
209 lines (181 loc) • 6.06 kB
JavaScript
// source: toit/model/pubsub/topic.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')();
goog.exportSymbol('proto.toit.model.pubsub.Topic', null, global);
goog.exportSymbol('proto.toit.model.pubsub.TopicType', 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.toit.model.pubsub.Topic = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.toit.model.pubsub.Topic, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.toit.model.pubsub.Topic.displayName = 'proto.toit.model.pubsub.Topic';
}
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.toit.model.pubsub.Topic.prototype.toObject = function(opt_includeInstance) {
return proto.toit.model.pubsub.Topic.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.toit.model.pubsub.Topic} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.toit.model.pubsub.Topic.toObject = function(includeInstance, msg) {
var f, obj = {
type: jspb.Message.getFieldWithDefault(msg, 1, 0),
name: jspb.Message.getFieldWithDefault(msg, 2, "")
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.toit.model.pubsub.Topic}
*/
proto.toit.model.pubsub.Topic.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.toit.model.pubsub.Topic;
return proto.toit.model.pubsub.Topic.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.toit.model.pubsub.Topic} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.toit.model.pubsub.Topic}
*/
proto.toit.model.pubsub.Topic.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {!proto.toit.model.pubsub.TopicType} */ (reader.readEnum());
msg.setType(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.toit.model.pubsub.Topic.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.toit.model.pubsub.Topic.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.toit.model.pubsub.Topic} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.toit.model.pubsub.Topic.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getType();
if (f !== 0.0) {
writer.writeEnum(
1,
f
);
}
f = message.getName();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
};
/**
* optional TopicType type = 1;
* @return {!proto.toit.model.pubsub.TopicType}
*/
proto.toit.model.pubsub.Topic.prototype.getType = function() {
return /** @type {!proto.toit.model.pubsub.TopicType} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
};
/**
* @param {!proto.toit.model.pubsub.TopicType} value
* @return {!proto.toit.model.pubsub.Topic} returns this
*/
proto.toit.model.pubsub.Topic.prototype.setType = function(value) {
return jspb.Message.setProto3EnumField(this, 1, value);
};
/**
* optional string name = 2;
* @return {string}
*/
proto.toit.model.pubsub.Topic.prototype.getName = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
/**
* @param {string} value
* @return {!proto.toit.model.pubsub.Topic} returns this
*/
proto.toit.model.pubsub.Topic.prototype.setName = function(value) {
return jspb.Message.setProto3StringField(this, 2, value);
};
/**
* @enum {number}
*/
proto.toit.model.pubsub.TopicType = {
TOPIC_TYPE_UNKNOWN: 0,
TOPIC_TYPE_CLOUD: 1,
TOPIC_TYPE_DEVICE: 2,
TOPIC_TYPE_DEVICE_MEMORY: 3
};
goog.object.extend(exports, proto.toit.model.pubsub);