Packages

package util

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

Value Members

  1. def addMaps[K, V](a: Map[K, V], b: Map[K, V])(fun: (V, V) => V): Map[K, V]
  2. def addMaps[K, V](a: Map[K, V], b: Map[K, V])(fun: (V, V) => V): Map[K, V]
  3. def base64(s: String): Array[Byte]
  4. def base64(b: Array[Byte]): String
  5. def chooseNetworkPort(implicit config: TasksConfig): Int
  6. def exec(pb: ProcessBuilder)(stdOutFunc: (String) => Unit)(implicit stdErrFunc: (String) => Unit): Int
  7. def execGetStreamsAndCode(pb: ProcessBuilder, unsuccessfulOnErrorStream: Boolean): (List[String], List[String], Boolean)
  8. def openFileInputStream[T](fileName: File)(func: (BufferedInputStream) => T): T
  9. def openFileOutputStream[T](fileName: File, append: Boolean)(func: (BufferedOutputStream) => T): T
  10. def readBinaryFile(f: File): Array[Byte]
  11. def readBinaryFile(fileName: String): Array[Byte]
  12. def readBinaryStream(f: InputStream): Array[Byte]
  13. def readStreamAndClose(is: InputStream): Iterator[Byte] { ... /* 2 definitions in type refinement */ }
  14. def reflectivelyInstantiateObject[A](fqcn: String): A
  15. def rethrow[T](messageOnError: => String)(block: => T): T
  16. def rethrow[T](messageOnError: => String, exceptionFactory: (=> String, Throwable) => Throwable)(block: => T): T
  17. def retry[T](n: Int)(fn: => T): Try[T]
    Annotations
    @tailrec()
  18. def retryFuture[A](tag: String)(f: => Future[A], c: Int)(implicit as: ActorSystem, ec: ExecutionContext, log: Logger): Future[A]
  19. def retryIO[A](tag: String)(f: => IO[A], c: Int)(implicit log: Logger): IO[A]
  20. def rightOrThrow[A, E](e: Either[E, A]): A
  21. def stackTraceAsString(t: Any): String
  22. def useResource[A <: AnyRef { def close(): Unit }, B](param: A)(f: (A) => B): B
  23. def writeBinaryToFile(data: Array[Byte]): File
  24. def writeBinaryToFile(file: File, data: Array[Byte]): Unit
  25. def writeBinaryToFile(fileName: String, data: Array[Byte]): Unit
  26. def writeToFile(file: File, data: String): Unit
  27. def writeToFile(fileName: String, data: String): Unit
  28. object EC2Operations

Inherited from AnyRef

Inherited from Any

Ungrouped