comparison src/memory/memory.py @ 1587:698d6755d62a

core, bridge (params): added asyncGetParamsValuesFromCategory (yes that's a long name!) method to retrive params names and values for a given category
author Goffi <goffi@goffi.org>
date Sat, 14 Nov 2015 19:18:10 +0100
parents 42285d993e68
children 0df9c6247474
comparison
equal deleted inserted replaced
1586:42285d993e68 1587:698d6755d62a
856 return self.params.getParamA(name, category, attr, profile_key=profile_key) 856 return self.params.getParamA(name, category, attr, profile_key=profile_key)
857 857
858 def asyncGetParamA(self, name, category, attr="value", security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE): 858 def asyncGetParamA(self, name, category, attr="value", security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE):
859 return self.params.asyncGetParamA(name, category, attr, security_limit, profile_key) 859 return self.params.asyncGetParamA(name, category, attr, security_limit, profile_key)
860 860
861 def asyncGetParamsValuesFromCategory(self, category, security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE):
862 return self.params.asyncGetParamsValuesFromCategory(category, security_limit, profile_key)
863
861 def asyncGetStringParamA(self, name, category, attr="value", security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE): 864 def asyncGetStringParamA(self, name, category, attr="value", security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE):
862 return self.params.asyncGetStringParamA(name, category, attr, security_limit, profile_key) 865 return self.params.asyncGetStringParamA(name, category, attr, security_limit, profile_key)
863 866
864 def getParamsUI(self, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE): 867 def getParamsUI(self, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE):
865 return self.params.getParamsUI(security_limit, app, profile_key) 868 return self.params.getParamsUI(security_limit, app, profile_key)