2025-06-04 05:02:57 +08:00

14 lines
427 B
Plaintext

autoImport('ServiceRedisAutoProxy')
ServiceRedisProxy = class('ServiceRedisProxy', ServiceRedisAutoProxy)
ServiceRedisProxy.Instance = nil
ServiceRedisProxy.NAME = 'ServiceRedisProxy'
function ServiceRedisProxy:ctor(proxyName)
if ServiceRedisProxy.Instance == nil then
self.proxyName = proxyName or ServiceRedisProxy.NAME
ServiceProxy.ctor(self, self.proxyName)
self:Init()
ServiceRedisProxy.Instance = self
end
end