Packages

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

Self Type
MapKeysStream[K]
Linear Supertypes
Serializable, Serializable, Product, Equals, Streamable[K, ApiIO], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapKeysStream
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Streamable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MapKeysStream(mapKey: Seq[K], mapsOnly: Boolean = false, userDefinedFrom: Boolean = false, set: Set[Key[K], ApiIO])(implicit keySerializer: Serializer[K], mapKeySerializer: Serializer[Key[K]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def after(key: K): MapKeysStream[K]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def before(key: K): MapKeysStream[K]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  8. def drop(count: Int): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  9. def dropWhile(f: (K) ⇒ Boolean): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def filter(f: (K) ⇒ Boolean): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  12. def filterNot(f: (K) ⇒ Boolean): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  13. def flatMap[B](f: (K) ⇒ Stream[B, ApiIO]): Stream[B, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  14. def foldLeft[B](initial: B)(f: (B, K) ⇒ B): ApiIO[B]
    Definition Classes
    MapKeysStream → Streamable
  15. def foreach[U](f: (K) ⇒ U): Stream[Unit, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  16. def from(key: K): MapKeysStream[K]
  17. def fromOrAfter(key: K): MapKeysStream[K]
  18. def fromOrBefore(key: K): MapKeysStream[K]
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def headOption: ApiIO[Option[K]]
    Definition Classes
    MapKeysStream → Streamable
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isReverse: Boolean
  23. def lastOption: ApiIO[Option[K]]

    lastOption should always force formKey to be the endSubMapsKey because from is always set in swaydb.extensions.Maps and regardless from where the iteration starts the most efficient way to fetch the last is from the key endSubMapsKey.

    lastOption should always force formKey to be the endSubMapsKey because from is always set in swaydb.extensions.Maps and regardless from where the iteration starts the most efficient way to fetch the last is from the key endSubMapsKey.

    Definition Classes
    MapKeysStream → Streamable
  24. def map[B](f: (K) ⇒ B): Stream[B, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  25. val mapKey: Seq[K]
  26. val mapsOnly: Boolean
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def reverse: MapKeysStream[K]

    Returns the start key when doing reverse iteration.

    Returns the start key when doing reverse iteration.

    If subMaps are included then it will return the starting point to be Key.SubMapsEnd which will iterate backward until Key.MapEntriesStart else returns the starting point to be Key.MapEntriesEnd to fetch entries only.

  31. val set: Set[Key[K], ApiIO]
  32. def size: ApiIO[Int]
    Definition Classes
    MapKeysStream → Streamable
  33. def stream: Stream[K, ApiIO]
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def take(count: Int): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  36. def takeWhile(f: (K) ⇒ Boolean): Stream[K, ApiIO]
    Definition Classes
    MapKeysStream → Streamable
  37. def toString(): String
    Definition Classes
    MapKeysStream → AnyRef → Any
  38. val userDefinedFrom: Boolean
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Streamable[K, ApiIO]

Inherited from AnyRef

Inherited from Any

Ungrouped