function _M.read()

in lib/shenyu/register/zookeeper/connection.lua [59:66]


function _M.read(self, len)
    
    local sock = self.sock
    if not sock then
        return nil, "not initialized tpc."
    end
    return sock:receive(len)
end