Packages

t

io.github.vigoo.prox

ProxRuntime

trait ProxRuntime extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProxRuntime
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit class FiberOps[A] extends AnyRef
    Attributes
    protected
  2. implicit class IOOps[A] extends AnyRef
    Attributes
    protected
  3. implicit class ListProxErrorOps extends AnyRef
    Attributes
    protected
  4. implicit class MonoidStreamOps[A] extends AnyRef
    Attributes
    protected
  5. abstract type ProxExitCode
  6. abstract type ProxFiber[_]
  7. abstract type ProxIO[_]
  8. abstract type ProxMonoid[_]
  9. abstract type ProxPipe[_, _]
  10. abstract type ProxResource[_]
  11. abstract type ProxSink[_]
  12. abstract type ProxStream[_]
  13. implicit class ResourceOps[A] extends AnyRef
    Attributes
    protected
  14. implicit class StreamOps[A] extends AnyRef
    Attributes
    protected

Abstract Value Members

  1. abstract def blockingEffect[A](f: => A, wrapError: (Throwable) => ProxError): ProxIO[A]
    Attributes
    protected
  2. abstract def bracket[A, B](acquire: ProxIO[A])(use: (A) => ProxIO[B])(fin: (A, IOResult) => ProxIO[Unit]): ProxIO[B]
    Attributes
    protected
  3. abstract def cancelFiber[A](f: ProxFiber[A]): ProxIO[Unit]
    Attributes
    protected
  4. abstract def drainStream[A](s: ProxStream[A]): ProxIO[Unit]
    Attributes
    protected
  5. abstract def drainToJavaOutputStream(stream: ProxStream[Byte], output: OutputStream, flushChunks: Boolean): ProxIO[Unit]
    Attributes
    protected
  6. abstract def effect[A](f: => A, wrapError: (Throwable) => ProxError): ProxIO[A]
    Attributes
    protected
  7. abstract def exitCodeFromInt(value: Int): ProxExitCode
    Attributes
    protected
  8. abstract def foldMonoidStream[A](s: ProxStream[A])(implicit arg0: ProxMonoid[A]): ProxIO[A]
    Attributes
    protected
  9. abstract def foldStream[A, B](s: ProxStream[A], init: B, f: (B, A) => B): ProxIO[B]
    Attributes
    protected
  10. abstract def fromJavaInputStream(input: InputStream, chunkSize: Int): ProxStream[Byte]
    Attributes
    protected
  11. abstract def identityPipe[A]: ProxPipe[A, A]
    Attributes
    protected
  12. abstract def ioFlatMap[A, B](io: ProxIO[A], f: (A) => ProxIO[B]): ProxIO[B]
    Attributes
    protected
  13. abstract def ioMap[A, B](io: ProxIO[A], f: (A) => B): ProxIO[B]
    Attributes
    protected
  14. abstract def joinFiber[A](f: ProxFiber[A]): ProxIO[A]
    Attributes
    protected
  15. abstract def makeResource[A](acquire: ProxIO[A], release: (A) => ProxIO[Unit]): ProxResource[A]
    Attributes
    protected
  16. abstract def pure[A](value: A): ProxIO[A]
    Attributes
    protected
  17. abstract def raiseError(error: ProxError): ProxIO[Unit]
    Attributes
    protected
  18. abstract def runStreamTo[A](s: ProxStream[A], sink: ProxSink[A]): ProxIO[Unit]
    Attributes
    protected
  19. abstract def startFiber[A](f: ProxIO[A]): ProxIO[ProxFiber[A]]
    Attributes
    protected
  20. abstract def streamThrough[A, B](s: ProxStream[A], pipe: ProxPipe[A, B]): ProxStream[B]
    Attributes
    protected
  21. abstract def streamToVector[A](s: ProxStream[A]): ProxIO[Vector[A]]
    Attributes
    protected
  22. abstract def traverse[A, B](list: List[A])(f: (A) => ProxIO[B]): ProxIO[List[B]]
    Attributes
    protected
  23. abstract def unit: ProxIO[Unit]
    Attributes
    protected
  24. abstract def useResource[A, B](r: ProxResource[A], f: (A) => ProxIO[B]): ProxIO[B]
    Attributes
    protected

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @jdk.internal.HotSpotIntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @jdk.internal.HotSpotIntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @jdk.internal.HotSpotIntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @jdk.internal.HotSpotIntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @jdk.internal.HotSpotIntrinsicCandidate() @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped