ObjectRunner

object ObjectRunner extends CommonRunner

An object that runs another object specified by name.

Authors:

Lex Spoon

class Object
trait Matchable
class Any

Value members

Inherited methods

def run(urls: Seq[URL], objectName: String, arguments: Seq[String]): Unit

Run a given object, specified by name, using a specified classpath and argument list.

Run a given object, specified by name, using a specified classpath and argument list.

Inherited from:
CommonRunner
def runAndCatch(urls: Seq[URL], objectName: String, arguments: Seq[String]): Option[Throwable]

Catches any non-fatal exception thrown by run (in the case of InvocationTargetException, unwrapping it) and returns it in an Option.

Catches any non-fatal exception thrown by run (in the case of InvocationTargetException, unwrapping it) and returns it in an Option.

Inherited from:
CommonRunner