Packages

c

io.github.vigoo.prox.ProcessGroup

ProcessGroupImplIOE

case class ProcessGroupImplIOE[F[_], O, E](firstProcess: Process[F, Stream[F, Byte], E], innerProcesses: List[UnboundIProcess[F, Stream[F, Byte], E]], lastProcess: UnboundIProcess[F, O, E], originalProcesses: List[Process[F, Unit, Unit]])(implicit concurrent: Concurrent[F]) extends ProcessGroup[F, O, E] with Product with Serializable

Process group with bound input, output and error streams

Linear Supertypes
Serializable, Product, Equals, ProcessGroup[F, O, E], ProcessLike[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProcessGroupImplIOE
  2. Serializable
  3. Product
  4. Equals
  5. ProcessGroup
  6. ProcessLike
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ProcessGroupImplIOE(firstProcess: Process[F, Stream[F, Byte], E], innerProcesses: List[UnboundIProcess[F, Stream[F, Byte], E]], lastProcess: UnboundIProcess[F, O, E], originalProcesses: List[Process[F, Unit, Unit]])(implicit concurrent: Concurrent[F])

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]) @native()
  6. implicit val concurrent: Concurrent[F]
    Definition Classes
    ProcessGroupImplIOEProcessGroup
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. val firstProcess: Process[F, Stream[F, Byte], E]
    Definition Classes
    ProcessGroupImplIOEProcessGroup
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. val innerProcesses: List[UnboundIProcess[F, Stream[F, Byte], E]]
    Definition Classes
    ProcessGroupImplIOEProcessGroup
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val lastProcess: UnboundIProcess[F, O, E]
    Definition Classes
    ProcessGroupImplIOEProcessGroup
  14. def map(f: Mapper[F, O, E]): ProcessGroupImplIOE[F, O, E]

    Applies the given mapper to each process in the group

    Applies the given mapper to each process in the group

    f

    process mapper

    returns

    a new process group with all the processes altered by the mapper

    Definition Classes
    ProcessGroupImplIOEProcessGroup
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. val originalProcesses: List[Process[F, Unit, Unit]]
    Definition Classes
    ProcessGroupImplIOEProcessGroup
  19. def productElementNames: Iterator[String]
    Definition Classes
    Product
  20. def run(blocker: Blocker)(implicit runner: ProcessRunner[F]): F[ProcessGroupResult[F, O, E]]

    Starts the process group asynchronously and blocks the execution until it is finished

    Starts the process group asynchronously and blocks the execution until it is finished

    blocker

    Execution context for blocking operations

    runner

    The process runner to be used

    returns

    the result of the finished processes

    Definition Classes
    ProcessGroup
  21. def start(blocker: Blocker)(implicit runner: ProcessRunner[F]): Resource[F, Fiber[F, ProcessGroupResult[F, O, E]]]

    Starts the process group asynchronously and returns a closeable fiber representing it

    Starts the process group asynchronously and returns a closeable fiber representing it

    Joining the fiber waits for the processes to be terminated. Canceling the fiber terminates the processesnormally (with SIGTERM).

    blocker

    Execution context for blocking operations

    runner

    The process runner to be used

    returns

    a managed fiber representing the running processes

    Definition Classes
    ProcessGroup
  22. def startProcessGroup(blocker: Blocker)(implicit runner: ProcessRunner[F]): F[RunningProcessGroup[F, O, E]]

    Starts the process group asynchronously and returns the RunningProcessGroup interface for it

    Starts the process group asynchronously and returns the RunningProcessGroup interface for it

    This is the most advanced way to start process groups. See start and run as alternatives.

    blocker

    Execution context for blocking operations

    runner

    The process runner to be used

    returns

    interface for handling the running process group

    Definition Classes
    ProcessGroup
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ProcessGroup[F, O, E]

Inherited from ProcessLike[F]

Inherited from AnyRef

Inherited from Any

Ungrouped