* @package tao */ interface tao_models_classes_ServiceCacheInterface { // --- OPERATIONS --- /** * Short description of method setCache * * @access public * @author Somsack Sipasseuth, * @param string methodName * @param array args * @param array value * @return boolean */ public function setCache($methodName, $args = [], $value = []); /** * Short description of method getCache * * @access public * @author Somsack Sipasseuth, * @param string methodName * @param array args * @return mixed */ public function getCache($methodName, $args = []); /** * Short description of method clearCache * * @access public * @author Somsack Sipasseuth, * @param string methodName * @param array args * @return boolean */ public function clearCache($methodName = '', $args = []); } /* end of interface tao_models_classes_ServiceCacheInterface */