All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.psxpaul.task.ExecFork.kt Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package com.github.psxpaul.task

open class ExecFork : AbstractExecFork() {
    var commandLine:String? = null

    override fun getProcessArgs(): List? {
        val processArgs:MutableList = mutableListOf()
        processArgs.add(commandLine!!)
        processArgs.addAll(args)
        return processArgs
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy