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

Method read_ref

dubbo/codec/decoder.py:378–385  ·  view source on GitHub ↗

读取一个已知的object/list/map :return:

(self)

Source from the content-addressed store, hash-verified

376
377 @ranges(0x51)
378 def read_ref(self):
379 """
380 读取一个已知的object/list/map
381 :return:
382 """
383 self.read_byte() # 干掉0x51
384 ref_id = self.read_int()
385 return self.objects[ref_id]
386
387 def read_next(self):
388 """

Callers

nothing calls this directly

Calls 2

read_byteMethod · 0.95
read_intMethod · 0.95

Tested by

no test coverage detected