def callService()

in leda_python/leda.py [0:0]


    def callService(self, name, input):
        '''
			:param name[string]: method name
			:param input[dict]: , eg:
				{
					"args1": xxx,
					"args2": yyy
					...
				}
			:return:
				code[int]: 若获取成功则返回LEDA_SUCCESS, 失败则返回错误码(参考错误码定义:ledaException.py)
				output[dict]: , eg:
					{
						"key1": xxx,
						"key2": yyy,
						 ...
					}
		'''
        raise exception.LedaCallBackException("callService is empty")