Class KeySetCommand<K,​V>

    • Constructor Detail

      • KeySetCommand

        public KeySetCommand​(Cache<K,​V> cache,
                             org.infinispan.container.impl.InternalDataContainer<K,​V> dataContainer,
                             KeyPartitioner keyPartitioner,
                             long flagsBitSet)
    • Method Detail

      • perform

        public Set<K> perform​(InvocationContext ctx)
                       throws Throwable
        Description copied from interface: VisitableCommand
        Performs the primary function of the command. Please see specific implementation classes for details on what is performed as well as return types. Important: this method will be invoked at the end of interceptors chain. It should never be called directly from a custom interceptor.
        Specified by:
        perform in interface ReplicableCommand
        Specified by:
        perform in interface VisitableCommand
        Parameters:
        ctx - invocation context
        Returns:
        arbitrary return value generated by performing this command
        Throws:
        Throwable - in the event of problems.