Class

swaydb.java

MapIO

Related Doc: package java

Permalink

case class MapIO[K, V, F <: PureFunction[K, V, java.Return.Map[V]]](_asScala: Map[K, V, _, ThrowableIO]) extends Product with Serializable

IOMap database API.

For documentation check - http://swaydb.io/tag/

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapIO
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MapIO(_asScala: Map[K, V, _, ThrowableIO])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val _asScala: Map[K, V, _, ThrowableIO]

    Permalink
  5. def after(key: K): MapIO[K, V, F]

    Permalink
  6. def applyFunction(from: K, to: K, function: F): IO[Throwable, Done]

    Permalink
  7. def applyFunction(key: K, function: F): IO[Throwable, Done]

    Permalink
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def before(key: K): MapIO[K, V, F]

    Permalink
  10. def clear(): IO[Throwable, Done]

    Permalink
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def close(): IO[Throwable, Unit]

    Permalink
  13. def commit[P <: Prepare.Map[K, V, F]](prepare: Iterator[P]): IO[Throwable, Done]

    Permalink
  14. def commit[P <: Prepare.Map[K, V, F]](prepare: StreamIO[P]): IO[Throwable, Done]

    Permalink
  15. def commit[P <: Prepare.Map[K, V, F]](prepare: List[P]): IO[Throwable, Done]

    Permalink
  16. def contains(key: K): IO[Throwable, Boolean]

    Permalink
  17. def delete(): IO[Throwable, Unit]

    Permalink
  18. def drop(count: Integer): StreamIO[KeyVal[K, V]]

    Permalink
  19. def dropWhile(function: Predicate[KeyVal[K, V]]): StreamIO[KeyVal[K, V]]

    Permalink
  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. implicit val exceptionHandler: Throwable.type

    Permalink
  22. def expiration(key: K): IO[Throwable, Optional[Deadline]]

    Permalink
  23. def expire(keys: Iterator[Pair[K, Duration]]): IO[Throwable, Done]

    Permalink
  24. def expire(keys: StreamIO[Pair[K, Duration]]): IO[Throwable, Done]

    Permalink
  25. def expire(keys: List[Pair[K, Duration]]): IO[Throwable, Done]

    Permalink
  26. def expire(from: K, to: K, after: Duration): IO[Throwable, Done]

    Permalink
  27. def expire(key: K, after: Duration): IO[Throwable, Done]

    Permalink
  28. def filter(function: Predicate[KeyVal[K, V]]): StreamIO[KeyVal[K, V]]

    Permalink
  29. def filterNot(function: Predicate[KeyVal[K, V]]): StreamIO[KeyVal[K, V]]

    Permalink
  30. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  31. def flatMap[B](function: JavaFunction[KeyVal[K, V], StreamIO[B]]): StreamIO[B]

    Permalink
  32. def foldLeft[B](initial: B)(function: BiFunction[B, KeyVal[K, V], B]): IO[Throwable, B]

    Permalink
  33. def forEach(function: Consumer[KeyVal[K, V]]): StreamIO[Unit]

    Permalink
  34. def from(key: K): MapIO[K, V, F]

    Permalink
  35. def fromOrAfter(key: K): MapIO[K, V, F]

    Permalink
  36. def fromOrBefore(key: K): MapIO[K, V, F]

    Permalink
  37. def get(key: K): IO[Throwable, Optional[V]]

    Permalink
  38. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  39. def getKey(key: K): IO[Throwable, Optional[K]]

    Permalink
  40. def getKeyValue(key: K): IO[Throwable, Optional[KeyVal[K, V]]]

    Permalink
  41. def headOptional: IO[Throwable, Optional[KeyVal[K, V]]]

    Permalink
  42. def isEmpty: IO[Throwable, Boolean]

    Permalink
  43. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  44. def keySize(key: K): Integer

    Permalink
  45. def keys: SetIO[K, VoidS[K]]

    Permalink
  46. def lastOptional: IO[Throwable, Optional[KeyVal[K, V]]]

    Permalink
  47. def level0Meter: LevelZeroMeter

    Permalink
  48. def levelMeter(levelNumber: Integer): Optional[LevelMeter]

    Permalink
  49. def map[B](function: JavaFunction[KeyVal[K, V], B]): StreamIO[B]

    Permalink
  50. def mightContain(key: K): IO[Throwable, Boolean]

    Permalink
  51. def mightContainFunction(functionId: K): IO[Throwable, Boolean]

    Permalink
  52. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  53. def nonEmpty: IO[Throwable, Boolean]

    Permalink
  54. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  55. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  56. def put(keyValues: Iterator[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  57. def put(keyValues: StreamIO[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  58. def put(keyValues: List[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  59. def put(key: K, value: V, expireAfter: Duration): IO[Throwable, Done]

    Permalink
  60. def put(key: K, value: V): IO[Throwable, Done]

    Permalink
  61. def registerFunction(function: F): IO[Throwable, Done]

    Permalink
  62. def remove(keys: Iterator[K]): IO[Throwable, Done]

    Permalink
  63. def remove(keys: StreamIO[K]): IO[Throwable, Done]

    Permalink
  64. def remove(keys: List[K]): IO[Throwable, Done]

    Permalink
  65. def remove(from: K, to: K): IO[Throwable, Done]

    Permalink
  66. def remove(key: K): IO[Throwable, Done]

    Permalink
  67. def reverse: MapIO[K, V, F]

    Permalink
  68. def size: IO[Throwable, Integer]

    Permalink
  69. def sizeOfBloomFilterEntries: IO[Throwable, Integer]

    Permalink
  70. def sizeOfSegments: Long

    Permalink
  71. def stream: StreamIO[KeyVal[K, V]]

    Permalink
  72. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  73. def take(count: Integer): StreamIO[KeyVal[K, V]]

    Permalink
  74. def takeWhile(function: Predicate[KeyVal[K, V]]): StreamIO[KeyVal[K, V]]

    Permalink
  75. def timeLeft(key: K): IO[Throwable, Optional[Duration]]

    Permalink
  76. def toString(): String

    Permalink
    Definition Classes
    MapIO → AnyRef → Any
  77. def update(keyValues: Iterator[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  78. def update(keyValues: StreamIO[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  79. def update(keyValues: List[KeyVal[K, V]]): IO[Throwable, Done]

    Permalink
  80. def update(from: K, to: K, value: V): IO[Throwable, Done]

    Permalink
  81. def update(key: K, value: V): IO[Throwable, Done]

    Permalink
  82. def valueSize(value: V): Integer

    Permalink
  83. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  84. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped