Example #1
0
 /// <summary>
 /// Reads the specified defined value model.
 /// </summary>
 /// <param name="restActionModel">The rest action model.</param>
 /// <returns></returns>
 public static RestActionCache Read(RestAction restActionModel)
 {
     return(GetOrAddExisting(RestActionCache.CacheKey(restActionModel.Id),
                             () => LoadByModel(restActionModel)));
 }
Example #2
0
 /// <summary>
 /// Removes RestAction from cache
 /// </summary>
 /// <param name="id"></param>
 public static void Flush(int id)
 {
     FlushCache(RestActionCache.CacheKey(id));
 }
Example #3
0
 /// <summary>
 /// Returns RestAction object from cache.  If RestAction does not already exist in cache, it
 /// will be read and added to cache
 /// </summary>
 /// <param name="id">The identifier.</param>
 /// <param name="rockContext">The rock context.</param>
 /// <returns></returns>
 public static RestActionCache Read(int id, RockContext rockContext = null)
 {
     return(GetOrAddExisting(RestActionCache.CacheKey(id),
                             () => LoadById(id, rockContext)));
 }