Trait/Object

jabroni.exec.log

IterableLogger

Related Docs: object IterableLogger | package log

Permalink

trait IterableLogger extends ProcessLogger

A pimped out process logger which can produce an iterator of output and return a future of the exit code.

It can also append loggers which will be notified of the output while the process is running, but does not guarantee any output will be sent if added after the process has started.

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

Abstract Value Members

  1. abstract def add(pl: ProcessLogger): IterableLogger

    Permalink

    pl

    an additional process logger to attach

  2. abstract def buffer[T](f: ⇒ T): T

    Permalink
    Definition Classes
    ProcessLogger
  3. abstract def complete(exception: Throwable): Unit

    Permalink

    This is called by a ProcessRunner on an error case to 'complete' the process, potentially before it is even started

    This is called by a ProcessRunner on an error case to 'complete' the process, potentially before it is even started

    exception

    an error

  4. abstract def complete(code: ⇒ Int): Unit

    Permalink

    This is called by a ProcessRunner to 'complete' the process and fulfill the exit code

    This is called by a ProcessRunner to 'complete' the process and fulfill the exit code

    code

    the exit code

  5. abstract def err(s: ⇒ String): Unit

    Permalink
    Definition Classes
    ProcessLogger
  6. abstract def exitCodeFuture: Future[Int]

    Permalink

    returns

    a Future completed when this process does

  7. abstract def iterator: Iterator[String]

    Permalink

    In the cas where an error occurs during output streaming, the output may contain an 'error marker', followed by the ProcessError json.

    In the cas where an error occurs during output streaming, the output may contain an 'error marker', followed by the ProcessError json.

    See RunProcess#errorMarker

    returns

    an iterator of standard output.

  8. abstract def matchDetails: Option[MatchDetails]

    Permalink

    returns

    the optional match details associated with this process

  9. abstract def out(s: ⇒ String): Unit

    Permalink
    Definition Classes
    ProcessLogger

Concrete 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. final def addStdErr(pl: ProcessLogger): IterableLogger

    Permalink
  5. final def addStdOut(pl: ProcessLogger): IterableLogger

    Permalink
  6. final def addUnderDir(logDir: Path): IterableLogger

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  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(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

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

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

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

Inherited from ProcessLogger

Inherited from AnyRef

Inherited from Any

Ungrouped