Uses of Class
com.gigaspaces.client.CountModifiers
Packages that use CountModifiers
Package
Description
Deprecated: use
org.openspaces.core instead.Top level core package holding main OpenSpaces API for Space (GigaSpace) and Map (GigaMap) and
the ability to create it.
-
Uses of CountModifiers in com.gigaspaces.client
Fields in com.gigaspaces.client declared as CountModifiersModifier and TypeFieldDescriptionstatic final CountModifiersCountModifiers.DIRTY_READWhen a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is ignored and matching is performed on the uncommitted state.static final CountModifiersCountModifiers.EXCLUSIVE_READ_LOCKThe resulting entries are locked, blocking update/remove from other transactions.static final CountModifiersCountModifiers.MEMORY_ONLY_SEARCHSearch for matching entries in cache memory only (do not use the underlying EDS).static final CountModifiersCountModifiers.NONEEmpty - use operation default behavior.static final CountModifiersCountModifiers.READ_COMMITTEDWhen a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is honored and matching is performed on the committed state.static final CountModifiersCountModifiers.REPEATABLE_READWhen a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is honored and the entry is skipped (if the operation is invoked with a timeout it will block until the entry will be released or the timeout expires).Methods in com.gigaspaces.client that return CountModifiersModifier and TypeMethodDescriptionCountModifiers.add(CountModifiers modifiers) Creates a new modifiers instance which is a union of the specified modifiers and this instance.protected CountModifiersCountModifiers.create(int modifiers) CountModifiers.remove(CountModifiers modifiers) Creates a new modifiers instance which excludes the specified modifiers from this instance.CountModifiers.setIsolationLevel(CountModifiers isolationLevel) Creates a new modifiers instance with the specified isolation level set and any other isolation level unset.Methods in com.gigaspaces.client with parameters of type CountModifiersModifier and TypeMethodDescriptionCountModifiers.add(CountModifiers modifiers) Creates a new modifiers instance which is a union of the specified modifiers and this instance.booleanCountModifiers.contains(CountModifiers modifiers) Checks if the specified modifier is set.CountModifiers.remove(CountModifiers modifiers) Creates a new modifiers instance which excludes the specified modifiers from this instance.CountModifiers.setIsolationLevel(CountModifiers isolationLevel) Creates a new modifiers instance with the specified isolation level set and any other isolation level unset.Constructors in com.gigaspaces.client with parameters of type CountModifiersModifierConstructorDescriptionCountModifiers(CountModifiers... modifiers) Creates a new modifiers from the specified modifiers.CountModifiers(CountModifiers modifiers1, CountModifiers modifiers2) Creates a new modifiers from the specified modifiers.CountModifiers(CountModifiers modifiers1, CountModifiers modifiers2, CountModifiers modifiers3) Creates a new modifiers from the specified modifiers. -
Uses of CountModifiers in org.openspaces.core
Methods in org.openspaces.core that return CountModifiersModifier and TypeMethodDescriptionDefaultGigaSpace.getDefaultCountModifiers()GigaSpace.getDefaultCountModifiers()Gets the defaultCountModifiersset during thisGigaSpaceconfiguration.GigaSpaceConfigurer.getDefaultCountModifiers()static CountModifiersIsolationLevelHelpers.toCountModifiers(int isolationLevel) Methods in org.openspaces.core with parameters of type CountModifiersModifier and TypeMethodDescriptionintDefaultGigaSpace.count(Object template, CountModifiers modifiers) intGigaSpace.count(Object template, CountModifiers modifiers) Count any matching entries from the space.GigaSpaceConfigurer.defaultCountModifiers(CountModifiers defaultCountModifiers) Set the defaultCountModifiersto be used for count operations on theGigaSpaceinstance.voidDefaultGigaSpace.setDefaultCountModifiers(CountModifiers modifiers) Sets the defaultCountModifierswhen excecutionDefaultGigaSpace.count(Object)voidGigaSpaceFactoryBean.setDefaultCountModifiers(CountModifiers[] defaultCountModifiers) Set the defaultCountModifiersto be used for count operations on theGigaSpaceinstance.