AsyncTable

final class AsyncTable[F[_], K, V](elems: Seq[(K, V)])(implicit evidence$1: Effect[F])
Companion:
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def fail(key: K, error: Throwable): F[Unit]
def get(key: K): F[V]
def getFill(key: K)(f: => F[V]): F[V]
def getImmediately(key: K): F[Option[V]]
def put(key: K, value: V): F[Unit]
def putEither(key: K, errorOrValue: Either[Throwable, V], silent: Boolean): F[Unit]
def remove(key: K): F[Unit]