Class LfuCache$

java.lang.Object
org.apache.pekko.http.caching.LfuCache$

public class LfuCache$ extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final LfuCache$
    Static reference to the singleton instance of this Scala object.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    <K, V> Cache<K,V>
    apply(org.apache.pekko.actor.ActorSystem system)
     
    <K, V> Cache<K,V>
    apply(CachingSettings cachingSettings)
    Creates a new pekko.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
    <K, V> Cache<K,V>
    create(org.apache.pekko.actor.ActorSystem system)
    Java API Creates a new pekko.http.caching.LfuCache using configuration of the system, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
    <K, V> Cache<K,V>
    Java API Creates a new pekko.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
    toJavaMappingFunction(scala.Function0<scala.concurrent.Future<V>> genValue)
     
    toJavaMappingFunction(scala.Function1<K,scala.concurrent.Future<V>> loadValue)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • MODULE$

      public static final LfuCache$ MODULE$
      Static reference to the singleton instance of this Scala object.
  • Constructor Details

    • LfuCache$

      public LfuCache$()
  • Method Details

    • apply

      public <K, V> Cache<K,V> apply(org.apache.pekko.actor.ActorSystem system)
    • apply

      public <K, V> Cache<K,V> apply(CachingSettings cachingSettings)
      Creates a new pekko.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
      Parameters:
      cachingSettings - (undocumented)
      Returns:
      (undocumented)
    • create

      public <K, V> Cache<K,V> create(org.apache.pekko.actor.ActorSystem system)
      Java API Creates a new pekko.http.caching.LfuCache using configuration of the system, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
      Parameters:
      system - (undocumented)
      Returns:
      (undocumented)
    • create

      public <K, V> Cache<K,V> create(CachingSettings settings)
      Java API Creates a new pekko.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
      Parameters:
      settings - (undocumented)
      Returns:
      (undocumented)
    • toJavaMappingFunction

      public <K, V> BiFunction<K,Executor,CompletableFuture<V>> toJavaMappingFunction(scala.Function0<scala.concurrent.Future<V>> genValue)
    • toJavaMappingFunction

      public <K, V> BiFunction<K,Executor,CompletableFuture<V>> toJavaMappingFunction(scala.Function1<K,scala.concurrent.Future<V>> loadValue)