Class/Object

swaydb.java

IO

Related Docs: object IO | package java

Permalink

class IO[L, R] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IO(asScala: swaydb.IO[L, R])(implicit exceptionHandler: ExceptionHandler[L])

    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. def and[B](supplier: Supplier[IO[L, B]]): IO[L, B]

    Permalink
  5. def andThen[B](supplier: Supplier[B]): IO[L, B]

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val asScala: swaydb.IO[L, R]

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(obj: Any): Boolean

    Permalink
    Definition Classes
    IO → AnyRef → Any
  11. implicit val exceptionHandler: ExceptionHandler[L]

    Permalink
  12. def exists(predicate: Predicate[R]): Boolean

    Permalink
  13. def filter(predicate: Predicate[R]): IO[L, R]

    Permalink
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatMap[B](function: JavaFunction[R, IO[L, B]]): IO[L, B]

    Permalink
  16. def forEach(consumer: Consumer[R]): Unit

    Permalink
  17. def get: R

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. def getLeft: L

    Permalink
  20. def getRight: R

    Permalink
  21. def hashCode(): Int

    Permalink
    Definition Classes
    IO → AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def isLeft: Boolean

    Permalink
  24. def isRight: Boolean

    Permalink
  25. def leftIO: IO[Throwable, L]

    Permalink
  26. def map[B](function: JavaFunction[R, B]): IO[L, B]

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

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  30. def onCompleteSideEffect(consumer: Consumer[IO[L, R]]): IO[L, R]

    Permalink
  31. def onLeftSideEffect(consumer: Consumer[L]): IO[L, R]

    Permalink
  32. def onRightSideEffect(consumer: Consumer[R]): IO[L, R]

    Permalink
  33. def or[B >: R](supplier: Supplier[IO[L, B]]): IO[L, B]

    Permalink
  34. def orElseGet[B >: R](supplier: Supplier[B]): B

    Permalink
  35. def recover[B >: R](function: JavaFunction[L, B]): IO[L, B]

    Permalink
  36. def recoverWith[B >: R](function: JavaFunction[L, IO[L, B]]): IO[L, B]

    Permalink
  37. def rightIO: IO[Throwable, R]

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

    Permalink
    Definition Classes
    AnyRef
  39. def toFuture: CompletionStage[R]

    Permalink
  40. def toOptional: Optional[R]

    Permalink
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. def transform[B](function: JavaFunction[R, B]): IO[L, B]

    Permalink

    Difference between map and transform is that transform does not recovery from exception if the function F throws an Exception.

  43. def tryGet: R

    Permalink
    Annotations
    @throws( ... )
  44. def tryGetLeft: L

    Permalink
    Annotations
    @throws( ... )
  45. def tryGetRight: R

    Permalink
    Annotations
    @throws( ... )
  46. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped