package stream
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class MapKeysStream[K](mapKey: Seq[K], mapsOnly: Boolean = false, userDefinedFrom: Boolean = false, set: Set[Key[K], ApiIO])(implicit keySerializer: Serializer[K], mapKeySerializer: Serializer[Key[K]]) extends Streamable[K, ApiIO] with Product with Serializable
- case class MapStream[K, V](mapKey: Seq[K], mapsOnly: Boolean = false, userDefinedFrom: Boolean = false, map: swaydb.Map[Key[K], Option[V], ApiIO])(implicit keySerializer: Serializer[K], mapKeySerializer: Serializer[Key[K]], optionValueSerializer: Serializer[Option[V]]) extends Streamable[(K, V), ApiIO] with Product with Serializable
- sealed trait Step extends AnyRef
Value Members
-
object
MapKeysStream extends Serializable
TODO - MapStream and MapKeysStream are similar and need a higher type - tagless final.
TODO - MapStream and MapKeysStream are similar and need a higher type - tagless final.
Sample order
Key.MapStart(1), MapKey.EntriesStart(1) MapKey.Entry(1, 1) MapKey.EntriesEnd(1) MapKey.SubMapsStart(1) MapKey.SubMap(1, 1000) MapKey.SubMapsEnd(1) MapKey.End(1)
-
object
MapStream extends Serializable
TODO - MapStream and MapKeysStream are similar and need a higher type - tagless final.
TODO - MapStream and MapKeysStream are similar and need a higher type - tagless final.
Sample order
Key.MapStart(1), MapKey.EntriesStart(1) MapKey.Entry(1, 1) MapKey.EntriesEnd(1) MapKey.SubMapsStart(1) MapKey.SubMap(1, 1000) MapKey.SubMapsEnd(1) MapKey.End(1)
- object Step