org.devcake.groovy.remoteconsole.ScriptExecutionProcessorAdapter.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remoteconsole-groovy Show documentation
Show all versions of remoteconsole-groovy Show documentation
The library allows to create remote console server easily, and run Groovy scripts remotely on the console server.
It supports execution of parts of the script, with all import statements applied.
The library can be used as a standalone remote console server, and as embedded console server.
It contains default implementaiton of Remote Console client, whereas customized implementation is also available.
package org.devcake.groovy.remoteconsole
/**
* Created by IntelliJ IDEA.
* User: Admin
* Date: 30.09.2010
* Time: 1:04:51
* To change this template use File | Settings | File Templates.
*/
class ScriptExecutionProcessorAdapter implements ScriptExecutionProcessor {
def void startOutput() {
//To change body of implemented methods use File | Settings | File Templates.
}
def void processOutputLine(String outputLine) {
//To change body of implemented methods use File | Settings | File Templates.
}
def void processOutputErrorLine(String outputErrorLine) {
//To change body of implemented methods use File | Settings | File Templates.
}
def void endOutput() {
//To change body of implemented methods use File | Settings | File Templates.
}
def void startError() {
//To change body of implemented methods use File | Settings | File Templates.
}
def void processErrorLine(String errorLine) {
//To change body of implemented methods use File | Settings | File Templates.
}
def void endError() {
//To change body of implemented methods use File | Settings | File Templates.
}
def void startResult() {
//To change body of implemented methods use File | Settings | File Templates.
}
def void processResultLine(String resultLine) {
//To change body of implemented methods use File | Settings | File Templates.
}
def void endResult() {
//To change body of implemented methods use File | Settings | File Templates.
}
}