org.infinispan.cdi.interceptor
Class CacheResultInterceptor

java.lang.Object
  extended by org.infinispan.cdi.interceptor.CacheResultInterceptor

@Interceptor
public class CacheResultInterceptor
extends Object

Implementation class of the CacheResult interceptor. This interceptor uses the following algorithm describes in JSR-107.

When a method annotated with @CacheResult is invoked the following must occur.

  1. Generate a key based on InvocationContext using the specified CacheKeyGenerator.
  2. Use this key to look up the entry in the cache.
  3. If an entry is found return it as the result and do not call the annotated method.
  4. If no entry is found invoke the method.
  5. Use the result to populate the cache with this key/result pair.
There is a skipGet attribute which if set to true will cause the method body to always be invoked and the return value put into the cache. The cache is not checked for the key before method body invocation, skipping steps 2 and 3 from the list above. This can be used for annotating methods that do a cache.put() with no other consequences.

Author:
Kevin Pollet (C) 2011 SERLI

Constructor Summary
CacheResultInterceptor(CacheResolver cacheResolver)
           
 
Method Summary
 Object cacheResult(InvocationContext context)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CacheResultInterceptor

@Inject
public CacheResultInterceptor(CacheResolver cacheResolver)
Method Detail

cacheResult

public Object cacheResult(InvocationContext context)
                   throws Exception
Throws:
Exception

-->

Copyright © 2011 JBoss, a division of Red Hat. All Rights Reserved.