Package org.infinispan.cdi.remote
Class RemoteCacheProducer
- java.lang.Object
-
- org.infinispan.cdi.remote.RemoteCacheProducer
-
@ApplicationScoped public class RemoteCacheProducer extends Object
TheRemoteCacheproducer.- Author:
- Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
-
-
Constructor Summary
Constructors Constructor Description RemoteCacheProducer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
RemoteCache<K,V>getRemoteCache(InjectionPoint injectionPoint)Produces the remote cache.
-
-
-
Method Detail
-
getRemoteCache
@Remote @Produces public <K,V> RemoteCache<K,V> getRemoteCache(InjectionPoint injectionPoint)
Produces the remote cache.- Type Parameters:
K- the type of the key.V- the type of the value.- Parameters:
injectionPoint- the injection point.- Returns:
- the remote cache instance.
-
-