You are here

protected static function Messaging_Cached_Object::object_cache_set in Messaging 6.4

Set value into static cache

2 calls to Messaging_Cached_Object::object_cache_set()
Messaging_Cached_Object::object_load in includes/messaging_object.class.inc
Load object by unique key, may have static caching
Messaging_Destination::cache_set in includes/messaging_destination.class.inc

File

includes/messaging_object.class.inc, line 328
Drupal Messaging Framework - Base classes

Class

Messaging_Cached_Object
Class with static caching

Code

protected static function object_cache_set($class_name, $key, $value) {
  return messaging_static_cache_set($class_name, $key, $value);
}