Uses of Class
org.infinispan.context.Flag

Packages that use Flag
org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. 
org.infinispan.commands Commands that operate on the cache, either locally or remotely. 
org.infinispan.commands.control Commands that control and coordinate certain cache operations, such as rehashing, state transfer and locking. 
org.infinispan.commands.read Commands that read data from the cache. 
org.infinispan.commands.remote Meta-commands that wrap other commands for remote execution. 
org.infinispan.commands.write Commands that alter the state of the cache. 
org.infinispan.context Contexts contain information of a specific invocation on the cache, such as its origins, scope (transactional or non-transactional), as well as invocation-specific flags. 
org.infinispan.context.impl This package contains different context implementations, selected dynamically based on the type of invocation. 
org.infinispan.tree This package contains the TreeCache. 
 

Uses of Flag in org.infinispan
 

Methods in org.infinispan with parameters of type Flag
 AdvancedCache<K,V> CacheDelegate.withFlags(Flag... flags)
           
 AdvancedCache<K,V> AbstractDelegatingAdvancedCache.withFlags(Flag... flags)
           
 AdvancedCache<K,V> AdvancedCache.withFlags(Flag... flags)
          A builder-style method that adds flags to any API call.
 

Uses of Flag in org.infinispan.commands
 

Methods in org.infinispan.commands that return types with arguments of type Flag
 Set<Flag> FlagAffectedCommand.getFlags()
           
 

Method parameters in org.infinispan.commands with type arguments of type Flag
 ClearCommand CommandsFactoryImpl.buildClearCommand(Set<Flag> flags)
           
 ClearCommand CommandsFactory.buildClearCommand(Set<Flag> flags)
          Builds a ClearCommand
 ClusteredGetCommand CommandsFactoryImpl.buildClusteredGetCommand(Object key, Set<Flag> flags)
           
 ClusteredGetCommand CommandsFactory.buildClusteredGetCommand(Object key, Set<Flag> flags)
          Builds a ClusteredGetCommand, which is a remote lookup command
 GetKeyValueCommand CommandsFactoryImpl.buildGetKeyValueCommand(Object key, Set<Flag> flags)
           
 GetKeyValueCommand CommandsFactory.buildGetKeyValueCommand(Object key, Set<Flag> flags)
          Builds a GetKeyValueCommand
 LockControlCommand CommandsFactoryImpl.buildLockControlCommand(Collection keys, boolean implicit, Set<Flag> flags)
           
 LockControlCommand CommandsFactory.buildLockControlCommand(Collection keys, boolean implicit, Set<Flag> flags)
          Builds a LockControlCommand to control explicit remote locking
 PutKeyValueCommand CommandsFactoryImpl.buildPutKeyValueCommand(Object key, Object value, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
 PutKeyValueCommand CommandsFactory.buildPutKeyValueCommand(Object key, Object value, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
          Builds a PutKeyValueCommand
 PutMapCommand CommandsFactoryImpl.buildPutMapCommand(Map map, long lifespan, long maxIdleTimeMillis, Set<Flag> flags)
           
 PutMapCommand CommandsFactory.buildPutMapCommand(Map map, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
          Builds a PutMapCommand
 RemoveCommand CommandsFactoryImpl.buildRemoveCommand(Object key, Object value, Set<Flag> flags)
           
 RemoveCommand CommandsFactory.buildRemoveCommand(Object key, Object value, Set<Flag> flags)
          Builds a RemoveCommand
 ReplaceCommand CommandsFactoryImpl.buildReplaceCommand(Object key, Object oldValue, Object newValue, long lifespan, long maxIdleTimeMillis, Set<Flag> flags)
           
 ReplaceCommand CommandsFactory.buildReplaceCommand(Object key, Object oldValue, Object newValue, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
          Builds a ReplaceCommand
 void FlagAffectedCommand.setFlags(Set<Flag> flags)
          Use it to store the flags from the InvocationContext into the Command before remoting the Command.
 

Uses of Flag in org.infinispan.commands.control
 

Methods in org.infinispan.commands.control that return types with arguments of type Flag
 Set<Flag> LockControlCommand.getFlags()
           
 

Method parameters in org.infinispan.commands.control with type arguments of type Flag
 void LockControlCommand.setFlags(Set<Flag> flags)
           
 

Constructor parameters in org.infinispan.commands.control with type arguments of type Flag
LockControlCommand(Collection<Object> keys, String cacheName, Set<Flag> flags)
           
LockControlCommand(Collection<Object> keys, String cacheName, Set<Flag> flags, boolean implicit)
           
 

Uses of Flag in org.infinispan.commands.read
 

Fields in org.infinispan.commands.read with type parameters of type Flag
protected  Set<Flag> AbstractDataCommand.flags
           
 

Methods in org.infinispan.commands.read that return types with arguments of type Flag
 Set<Flag> AbstractDataCommand.getFlags()
           
 

Method parameters in org.infinispan.commands.read with type arguments of type Flag
 void AbstractDataCommand.setFlags(Set<Flag> flags)
           
 

Constructor parameters in org.infinispan.commands.read with type arguments of type Flag
AbstractDataCommand(Object key, Set<Flag> flags)
           
GetKeyValueCommand(Object key, CacheNotifier notifier, Set<Flag> flags)
           
 

Uses of Flag in org.infinispan.commands.remote
 

Methods in org.infinispan.commands.remote that return types with arguments of type Flag
 Set<Flag> ClusteredGetCommand.getFlags()
           
 

Method parameters in org.infinispan.commands.remote with type arguments of type Flag
 void ClusteredGetCommand.setFlags(Set<Flag> flags)
           
 

Constructor parameters in org.infinispan.commands.remote with type arguments of type Flag
ClusteredGetCommand(Object key, String cacheName, Set<Flag> flags)
           
 

Uses of Flag in org.infinispan.commands.write
 

Methods in org.infinispan.commands.write that return types with arguments of type Flag
 Set<Flag> PutMapCommand.getFlags()
           
 Set<Flag> ClearCommand.getFlags()
           
 

Method parameters in org.infinispan.commands.write with type arguments of type Flag
 void PutMapCommand.setFlags(Set<Flag> flags)
           
 void ClearCommand.setFlags(Set<Flag> flags)
           
 

Constructor parameters in org.infinispan.commands.write with type arguments of type Flag
AbstractDataWriteCommand(Object key, Set<Flag> flags)
           
ClearCommand(CacheNotifier notifier, Set<Flag> flags)
           
PutKeyValueCommand(Object key, Object value, boolean putIfAbsent, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
PutMapCommand(Map map, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
RemoveCommand(Object key, Object value, CacheNotifier notifier, Set<Flag> flags)
           
ReplaceCommand(Object key, Object oldValue, Object newValue, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
 

Uses of Flag in org.infinispan.context
 

Methods in org.infinispan.context that return Flag
static Flag Flag.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Flag[] Flag.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.infinispan.context that return types with arguments of type Flag
protected static Set<Flag> Flag.copyWithouthRemotableFlags(Set<Flag> flags)
          Creates a copy of a Flag Set removing instances of FAIL_SILENTLY.
 Set<Flag> InvocationContextFlagsOverride.getFlags()
           
 Set<Flag> FlagContainer.getFlags()
           
 

Methods in org.infinispan.context with parameters of type Flag
 boolean InvocationContextFlagsOverride.hasFlag(Flag o)
           
 boolean FlagContainer.hasFlag(Flag o)
           
 void InvocationContextFlagsOverride.setFlags(Flag... newFlags)
           
 void FlagContainer.setFlags(Flag... flags)
           
 

Method parameters in org.infinispan.context with type arguments of type Flag
protected static Set<Flag> Flag.copyWithouthRemotableFlags(Set<Flag> flags)
          Creates a copy of a Flag Set removing instances of FAIL_SILENTLY.
 void InvocationContextFlagsOverride.setFlags(Collection<Flag> newFlags)
           
 void FlagContainer.setFlags(Collection<Flag> flags)
           
 

Constructor parameters in org.infinispan.context with type arguments of type Flag
InvocationContextFlagsOverride(InvocationContext delegate, Set<Flag> flags)
          Wraps an existing InvocationContext without changing the context directly but making sure the specified flags are considered enabled.
TransactionalInvocationContextFlagsOverride(TxInvocationContext delegate, Set<Flag> flags)
           
 

Uses of Flag in org.infinispan.context.impl
 

Fields in org.infinispan.context.impl with type parameters of type Flag
protected  EnumSet<Flag> AbstractInvocationContext.flags
           
 

Methods in org.infinispan.context.impl that return types with arguments of type Flag
 Set<Flag> AbstractInvocationContext.getFlags()
           
 

Methods in org.infinispan.context.impl with parameters of type Flag
 boolean AbstractInvocationContext.hasFlag(Flag o)
           
 void AbstractInvocationContext.setFlags(Flag... flags)
           
 

Method parameters in org.infinispan.context.impl with type arguments of type Flag
 void AbstractInvocationContext.setFlags(Collection<Flag> flags)
           
 

Uses of Flag in org.infinispan.tree
 

Methods in org.infinispan.tree that return types with arguments of type Flag
 Set<Flag> TreeContext.getFlags()
           
 

Methods in org.infinispan.tree with parameters of type Flag
 Node<K,V> NodeImpl.addChild(Fqn f, Flag... flags)
           
 Node<K,V> Node.addChild(Fqn f, Flag... flags)
           
 void NodeImpl.clearData(Flag... flags)
           
 void Node.clearData(Flag... flags)
           
 void TreeCacheImpl.clearData(Fqn fqn, Flag... flags)
           
 void TreeCache.clearData(Fqn fqn, Flag... flags)
           
 void TreeCacheImpl.clearData(String fqn, Flag... flags)
           
 void TreeCache.clearData(String fqn, Flag... flags)
           
 int NodeImpl.dataSize(Flag... flags)
           
 int Node.dataSize(Flag... flags)
           
 boolean TreeCacheImpl.exists(Fqn fqn, Flag... flags)
           
 boolean TreeCache.exists(Fqn fqn, Flag... flags)
           
 boolean TreeCacheImpl.exists(String fqn, Flag... flags)
           
 boolean TreeCache.exists(String fqn, Flag... flags)
           
 V TreeCacheImpl.get(Fqn fqn, K key, Flag... flags)
           
 V TreeCache.get(Fqn fqn, K key, Flag... flags)
           
 V NodeImpl.get(K key, Flag... flags)
           
 V Node.get(K key, Flag... flags)
           
 V TreeCacheImpl.get(String fqn, K key, Flag... flags)
           
 V TreeCache.get(String fqn, K key, Flag... flags)
           
 Node<K,V> NodeImpl.getChild(Fqn f, Flag... flags)
           
 Node<K,V> Node.getChild(Fqn f, Flag... flags)
           
 Node<K,V> NodeImpl.getChild(Object name, Flag... flags)
           
 Node<K,V> Node.getChild(Object name, Flag... flags)
           
 Set<Node<K,V>> NodeImpl.getChildren(Flag... flags)
           
 Set<Node<K,V>> Node.getChildren(Flag... flags)
           
 Set<Object> NodeImpl.getChildrenNames(Flag... flags)
           
 Set<Object> Node.getChildrenNames(Flag... flags)
           
 Map<K,V> NodeImpl.getData(Flag... flags)
           
 Map<K,V> Node.getData(Flag... flags)
           
 Map<K,V> TreeCacheImpl.getData(Fqn fqn, Flag... flags)
           
 Map<K,V> TreeCache.getData(Fqn fqn, Flag... flags)
           
 Set<K> NodeImpl.getKeys(Flag... flags)
           
 Set<K> Node.getKeys(Flag... flags)
           
 Set<K> TreeCacheImpl.getKeys(Fqn fqn, Flag... flags)
           
 Set<K> TreeCache.getKeys(Fqn fqn, Flag... flags)
           
 Set<K> TreeCacheImpl.getKeys(String fqn, Flag... flags)
           
 Set<K> TreeCache.getKeys(String fqn, Flag... flags)
           
 Node<K,V> TreeCacheImpl.getNode(Fqn fqn, Flag... flags)
           
 Node<K,V> TreeCache.getNode(Fqn fqn, Flag... flags)
           
 Node<K,V> TreeCacheImpl.getNode(String fqn, Flag... flags)
           
 Node<K,V> TreeCache.getNode(String fqn, Flag... flags)
           
 Node<K,V> NodeImpl.getParent(Flag... flags)
           
 Node<K,V> Node.getParent(Flag... flags)
           
 Node<K,V> TreeCacheImpl.getRoot(Flag... flags)
           
 Node<K,V> TreeCache.getRoot(Flag... flags)
           
 boolean NodeImpl.hasChild(Fqn f, Flag... flags)
           
 boolean Node.hasChild(Fqn f, Flag... flags)
           
 boolean NodeImpl.hasChild(Object o, Flag... flags)
           
 boolean Node.hasChild(Object o, Flag... flags)
           
 boolean TreeContext.hasFlag(Flag o)
           
 void TreeCacheImpl.move(Fqn nodeToMove, Fqn newParent, Flag... flags)
           
 void TreeCache.move(Fqn nodeToMove, Fqn newParent, Flag... flags)
           
 void TreeCacheImpl.move(String nodeToMove, String newParent, Flag... flags)
           
 void TreeCache.move(String nodeToMove, String newParent, Flag... flags)
           
 V TreeCacheImpl.put(Fqn fqn, K key, V value, Flag... flags)
           
 V TreeCache.put(Fqn fqn, K key, V value, Flag... flags)
           
 void TreeCacheImpl.put(Fqn fqn, Map<? extends K,? extends V> data, Flag... flags)
           
 void TreeCache.put(Fqn fqn, Map<? extends K,? extends V> data, Flag... flags)
           
 V NodeImpl.put(K key, V value, Flag... flags)
           
 V Node.put(K key, V value, Flag... flags)
           
 V TreeCacheImpl.put(String fqn, K key, V value, Flag... flags)
           
 V TreeCache.put(String fqn, K key, V value, Flag... flags)
           
 void TreeCacheImpl.put(String fqn, Map<? extends K,? extends V> data, Flag... flags)
           
 void TreeCache.put(String fqn, Map<? extends K,? extends V> data, Flag... flags)
           
 void NodeImpl.putAll(Map<? extends K,? extends V> map, Flag... flags)
           
 void Node.putAll(Map<? extends K,? extends V> map, Flag... flags)
           
 V NodeImpl.putIfAbsent(K key, V value, Flag... flags)
           
 V Node.putIfAbsent(K key, V value, Flag... flags)
           
 V TreeCacheImpl.remove(Fqn fqn, K key, Flag... flags)
           
 V TreeCache.remove(Fqn fqn, K key, Flag... flags)
           
 V NodeImpl.remove(K key, Flag... flags)
           
 V Node.remove(K key, Flag... flags)
           
 V TreeCacheImpl.remove(String fqn, K key, Flag... flags)
           
 V TreeCache.remove(String fqn, K key, Flag... flags)
           
 boolean NodeImpl.removeChild(Fqn f, Flag... flags)
           
 boolean Node.removeChild(Fqn f, Flag... flags)
           
 boolean NodeImpl.removeChild(Object childName, Flag... flags)
           
 boolean Node.removeChild(Object childName, Flag... flags)
           
 void NodeImpl.removeChildren(Flag... flags)
           
 void Node.removeChildren(Flag... flags)
           
 boolean TreeCacheImpl.removeNode(Fqn fqn, Flag... flags)
           
 boolean TreeCache.removeNode(Fqn fqn, Flag... flags)
           
 boolean TreeCacheImpl.removeNode(String fqn, Flag... flags)
           
 boolean TreeCache.removeNode(String fqn, Flag... flags)
           
 V NodeImpl.replace(K key, V value, Flag... flags)
           
 V Node.replace(K key, V value, Flag... flags)
           
 boolean NodeImpl.replace(K key, V oldValue, V value, Flag... flags)
           
 boolean Node.replace(K key, V oldValue, V value, Flag... flags)
           
 void NodeImpl.replaceAll(Map<? extends K,? extends V> map, Flag... flags)
           
 void Node.replaceAll(Map<? extends K,? extends V> map, Flag... flags)
           
 void TreeContext.setFlags(Flag... flags)
           
 

Method parameters in org.infinispan.tree with type arguments of type Flag
 void TreeContext.setFlags(Collection<Flag> flags)
           
 



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