Class CachePartialUpdateException

  • All Implemented Interfaces:
    Serializable

    public class CachePartialUpdateException
    extends javax.cache.CacheException
    Exception thrown from non-transactional cache in case when update succeeded only partially. One can get list of keys for which update failed with method failedKeys().
    See Also:
    Serialized Form
    • Constructor Detail

      • CachePartialUpdateException

        public CachePartialUpdateException​(org.apache.ignite.internal.processors.cache.CachePartialUpdateCheckedException e)
        Parameters:
        e - Cause.
    • Method Detail

      • failedKeys

        public <K> Collection<K> failedKeys()
        Gets collection of failed keys.
        Type Parameters:
        K - Type of keys.
        Returns:
        Collection of failed keys.