MCPcopy Index your code
hub / github.com/apache/dubbo-python2 / read_next

Method read_next

dubbo/codec/decoder.py:387–394  ·  view source on GitHub ↗

读取下一个变量,自动识别变量类型 :return:

(self)

Source from the content-addressed store, hash-verified

385 return self.objects[ref_id]
386
387 def read_next(self):
388 """
389 读取下一个变量,自动识别变量类型
390 :return:
391 """
392 data_type = self.get_byte()
393 func = functions[data_type]
394 return func(self)
395
396 def read_error(self):
397 """

Callers 6

_callbackMethod · 0.95
_parse_responseMethod · 0.95
read_objectMethod · 0.95
read_typeMethod · 0.95
read_listMethod · 0.95
read_mapMethod · 0.95

Calls 1

get_byteMethod · 0.95

Tested by

no test coverage detected