Packages

c

com.codedx.util.AsLineOutput

OutputByLinesUpgrade

implicit class OutputByLinesUpgrade[T] extends AnyRef

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

Instance Constructors

  1. new OutputByLinesUpgrade(target: T)(implicit arg0: AsLineOutput[T])

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. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def outputByLines[Result](work: ((String) => Unit) => Result): Result

    Opens the target object as a writeable resource, providing a function to write a line of text to the opened resource, then closing the resource once the work is done.

    Opens the target object as a writeable resource, providing a function to write a line of text to the opened resource, then closing the resource once the work is done.

    work

    A function that accepts a "write" function (e.g. println) and generates some Result value.

    returns

    The Result generated by the work function.

  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. def ~>[U](next: U)(implicit arg0: AsLineOutput[U]): CompoundTarget[T, U]

    Combine this target with another, creating a CompoundTarget.

    Combine this target with another, creating a CompoundTarget. When a CompoundTarget is used with outputByLines, work will be done on each of its component targets before moving on.

    Example:

    val callback1 = { s: String => println(s) }
    val callback2 = { ... }
    val myFile: File
    
    val targets = callback1 ~> callback2 ~> myFile
    targets.outputByLines { write =>
     write("Hello")
     write("world")
    }

    In this example, a writer for myFile will be opened. The callbacks technically will be opened as well, but that is a no-op and may be ignored. "Hello" would be sent to callback1 and callback2 before being written to myFile. Then "world" would be sent to callback1 and callback2, and written to myFile. Finally, the callbacks will be "closed" (a no-op), and the writer for myFile will be closed.

Inherited from AnyRef

Inherited from Any

Ungrouped