Interface CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    Enclosing interface:
    CaffeineLoadCacheEndpointBuilderFactory

    public static interface CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint for the Caffeine LoadCache component.
    • Method Detail

      • createCacheIfNotExist

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder createCacheIfNotExist​(boolean createCacheIfNotExist)
        Automatic create the Caffeine cache if none has been configured or exists in the registry. The option is a: <code>boolean</code> type. Default: true Group: producer
        Parameters:
        createCacheIfNotExist - the value to set
        Returns:
        the dsl builder
      • createCacheIfNotExist

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder createCacheIfNotExist​(String createCacheIfNotExist)
        Automatic create the Caffeine cache if none has been configured or exists in the registry. The option will be converted to a <code>boolean</code> type. Default: true Group: producer
        Parameters:
        createCacheIfNotExist - the value to set
        Returns:
        the dsl builder
      • evictionType

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder evictionType​(org.apache.camel.component.caffeine.EvictionType evictionType)
        Set the eviction Type for this cache. The option is a: <code>org.apache.camel.component.caffeine.EvictionType</code> type. Default: SIZE_BASED Group: producer
        Parameters:
        evictionType - the value to set
        Returns:
        the dsl builder
      • expireAfterAccessTime

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder expireAfterAccessTime​(int expireAfterAccessTime)
        Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read. Access time is reset by all cache read and write operations. The unit is in seconds. The option is a: <code>int</code> type. Default: 300 Group: producer
        Parameters:
        expireAfterAccessTime - the value to set
        Returns:
        the dsl builder
      • expireAfterAccessTime

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder expireAfterAccessTime​(String expireAfterAccessTime)
        Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last read. Access time is reset by all cache read and write operations. The unit is in seconds. The option will be converted to a <code>int</code> type. Default: 300 Group: producer
        Parameters:
        expireAfterAccessTime - the value to set
        Returns:
        the dsl builder
      • expireAfterWriteTime

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder expireAfterWriteTime​(int expireAfterWriteTime)
        Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value. The unit is in seconds. The option is a: <code>int</code> type. Default: 300 Group: producer
        Parameters:
        expireAfterWriteTime - the value to set
        Returns:
        the dsl builder
      • expireAfterWriteTime

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder expireAfterWriteTime​(String expireAfterWriteTime)
        Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value. The unit is in seconds. The option will be converted to a <code>int</code> type. Default: 300 Group: producer
        Parameters:
        expireAfterWriteTime - the value to set
        Returns:
        the dsl builder
      • initialCapacity

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder initialCapacity​(Integer initialCapacity)
        Sets the minimum total size for the internal data structures. Providing a large enough estimate at construction time avoids the need for expensive resizing operations later, but setting this value unnecessarily high wastes memory. The option is a: <code>java.lang.Integer</code> type. Group: producer
        Parameters:
        initialCapacity - the value to set
        Returns:
        the dsl builder
      • initialCapacity

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder initialCapacity​(String initialCapacity)
        Sets the minimum total size for the internal data structures. Providing a large enough estimate at construction time avoids the need for expensive resizing operations later, but setting this value unnecessarily high wastes memory. The option will be converted to a <code>java.lang.Integer</code> type. Group: producer
        Parameters:
        initialCapacity - the value to set
        Returns:
        the dsl builder
      • maximumSize

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder maximumSize​(Integer maximumSize)
        Specifies the maximum number of entries the cache may contain. Note that the cache may evict an entry before this limit is exceeded or temporarily exceed the threshold while evicting. As the cache size grows close to the maximum, the cache evicts entries that are less likely to be used again. For example, the cache may evict an entry because it hasn't been used recently or very often. When size is zero, elements will be evicted immediately after being loaded into the cache. This can be useful in testing, or to disable caching temporarily without a code change. As eviction is scheduled on the configured executor, tests may instead prefer to configure the cache to execute tasks directly on the same thread. The option is a: <code>java.lang.Integer</code> type. Group: producer
        Parameters:
        maximumSize - the value to set
        Returns:
        the dsl builder
      • maximumSize

        default CaffeineLoadCacheEndpointBuilderFactory.CaffeineLoadCacheEndpointBuilder maximumSize​(String maximumSize)
        Specifies the maximum number of entries the cache may contain. Note that the cache may evict an entry before this limit is exceeded or temporarily exceed the threshold while evicting. As the cache size grows close to the maximum, the cache evicts entries that are less likely to be used again. For example, the cache may evict an entry because it hasn't been used recently or very often. When size is zero, elements will be evicted immediately after being loaded into the cache. This can be useful in testing, or to disable caching temporarily without a code change. As eviction is scheduled on the configured executor, tests may instead prefer to configure the cache to execute tasks directly on the same thread. The option will be converted to a <code>java.lang.Integer</code> type. Group: producer
        Parameters:
        maximumSize - the value to set
        Returns:
        the dsl builder