Lines Matching full:of
8 * with the License. You may obtain a copy of the License at
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
28 * @property {number} STOP - End of a set of fields.
37 * @property {number} STRING - Array of bytes representing a string of characters.
38 * @property {number} UTF7 - Array of bytes representing a string of UTF7 encoded characters.
43 * @property {number} UTF8 - Array of bytes representing a string of UTF8 encoded characters.
44 * @property {number} UTF16 - Array of bytes representing a string of UTF16 encoded characters.
83 * Utility function returning the count of an object's own properties.
85 * @returns {number} number of object's own properties
255 * Returns the specified number of characters from the response
257 * @param {number} len - The number of characters to return.
282 * Old alias of the TXHRTransport for backwards compatibility.
350 * Returns the specified number of characters from the response
352 * @param {number} len - The number of characters to return.
379 * of the Apache Thrift TJSONProtocol.
394 * Thrift.Type.STRING -> "str": Array of bytes representing a string of characters.
436 * Serializes the beginning of a Thrift RPC message.
438 * @param {Thrift.MessageType} messageType - The type of method call.
439 * @param {number} seqid - The sequence number of this call (always 0 in Apache Thrift).
444 * Serializes the end of a Thrift RPC message.
449 * Serializes the beginning of a struct.
450 * @param {string} name - The name of the struct.
455 * Serializes the end of a struct.
460 * Serializes the beginning of a struct field.
461 * @param {string} name - The name of the field.
462 * @param {Thrift.Protocol.Type} fieldType - The data type of the field.
468 * Serializes the end of a field.
473 * Serializes the end of the set of fields for a struct.
478 * Serializes the beginning of a map collection.
479 * @param {Thrift.Type} keyType - The data type of the key.
480 * @param {Thrift.Type} valType - The data type of the value.
481 * @param {number} [size] - The number of elements in the map (ignored).
486 * Serializes the end of a map.
491 * Serializes the beginning of a list collection.
492 * @param {Thrift.Type} elemType - The data type of the elements.
493 * @param {number} size - The number of elements in the list.
498 * Serializes the end of a list.
503 * Serializes the beginning of a set collection.
504 * @param {Thrift.Type} elemType - The data type of the elements.
505 * @param {number} size - The number of elements in the list.
510 * Serializes the end of a set.
541 @property {string} fname - The name of the service method.
542 @property {Thrift.MessageType} mtype - The type of message call.
543 @property {number} rseqid - The sequence number of the message (0 in Thrift RPC).
546 * Deserializes the beginning of a message.
551 /** Deserializes the end of a message. */
555 * Deserializes the beginning of a struct.
556 * @param {string} [name] - The name of the struct (ignored).
561 /** Deserializes the end of a struct. */
567 @property {string} fname - The name of the field (always '').
568 @property {Thrift.Type} ftype - The data type of the field.
569 @property {number} fid - The unique identifier of the field.
572 * Deserializes the beginning of a field.
577 /** Deserializes the end of a field. */
583 @property {Thrift.Type} ktype - The data type of the key.
584 @property {Thrift.Type} vtype - The data type of the value.
585 @property {number} size - The number of elements in the map.
588 * Deserializes the beginning of a map.
593 /** Deserializes the end of a map. */
599 @property {Thrift.Type} etype - The data type of the element.
600 @property {number} size - The number of elements in the collection.
603 * Deserializes the beginning of a list.
608 /** Deserializes the end of a list. */
612 * Deserializes the beginning of a set.
613 * @param {Thrift.Type} elemType - The data type of the elements (ignored).
614 * @param {number} size - The number of elements in the list (ignored).
619 /** Deserializes the end of a set. */
662 * Old alias of the TXHRTransport for backwards compatibility.
679 * Override writeMessageBegin method of prototype
680 * Serializes the beginning of a Thrift RPC message.
682 * @param {Thrift.MessageType} messageType - The type of method call.
683 * @param {number} seqid - The sequence number of this call (always 0 in Apache Thrift).