Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
546 B

/**
* @fileoverview Internal interface for messages implemented with the binary
* kernel.
*/
goog.module('protobuf.binary.InternalMessage');
const Kernel = goog.requireType('protobuf.runtime.Kernel');
/**
* Interface that needs to be implemented by messages implemented with the
* binary kernel. This is an internal only interface and should be used only by
* the classes in binary kernel.
*
* @interface
*/
class InternalMessage {
/**
* @package
* @return {!Kernel}
*/
internalGetKernel() {}
}
exports = InternalMessage;