class
EnrichedReadableStore[-K, +V] extends AnyRef
Instance Constructors
-
new
EnrichedReadableStore(store: ReadableStore[K, V])
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
composeKeyMapping[K1](fn: (K1) ⇒ K): ReadableStore[K1, V]
-
def
convert[K1, V1](kfn: (K1) ⇒ K)(vfn: (V) ⇒ Future[V1]): ReadableStore[K1, V1]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
flatMapValues[V2](fn: (V) ⇒ Future[V2]): ReadableStore[K, V2]
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
mapValues[V1](fn: (V) ⇒ V1): ReadableStore[K, V1]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
unpivot[CombinedK, InnerK, InnerV](split: (CombinedK) ⇒ (K, InnerK))(implicit ev: <:<[V, Map[InnerK, InnerV]]): ReadableStore[CombinedK, InnerV]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
withCache[K1 <: K, V1 >: V](cache: Cache[K1, Future[Option[V1]]]): ReadableStore[K1, V1]
-
def
withCache[K1 <: K, V1 >: V](cache: MutableCache[K1, Future[Option[V1]]]): ReadableStore[K1, V1]
Inherited from AnyRef
Inherited from Any
Enrichment on the ReadableStore trait. Storehaus uses the enrichment pattern instead of adding these methods directly to the trait because many of the functions (mapValues, for example) have different meanings for ReadableStore, Store and MergeableStore.
import ReadableStore.enrich
to get access to these methods.
TODO: in scala 2.10 this should be a value class