This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcommon-studio-se/org.talend.librariesmanager/resources/java/routines/system/api/TalendJob.java
2011-11-25 15:56:59 +00:00

30 lines
722 B
Java

// ============================================================================
//
// %GENERATED_LICENSE%
//
// ============================================================================
package routines.system.api;
/**
* Interface describing Job behaviors.
*/
public interface TalendJob {
/**
* Run a Talend job.
*
* @param args job arguments.
* @return an array of value per row returned.
*/
public String[][] runJob(String[] args);
/**
* Run a Talend job.
*
* @param args job arguments.
* @return return code, if 0 execution completed successfully, else execution failed.
*/
public int runJobInTOS(String[] args);
}