Configuring the components - 7.3

Orchestration (Integration)

Version
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > Orchestration components (Integration)
Data Quality and Preparation > Third-party systems > Orchestration components (Integration)
Design and Development > Third-party systems > Orchestration components (Integration)
Last publication date
2024-02-21

Procedure

  1. Double-click tWaitForFile to open its Basic settings view.
  2. In the Directory to scan field, enter the directory to be scanned.
  3. In the File mask field, enter "*.txt" to scan only text files.
  4. From the Trigger action when drop-down list, select a file is created to trigger the first tJava when a text file is created.
  5. From the Then drop-down list, select exit loop to stop the iteration loop immediately after the first tJava is triggered.
  6. Double-click the first tJava to open its Basic settings view.
  7. In the code area, type in the following code:System.out.println("A file was created at " + TalendDate.getCurrentDate()); System.out.println("Name of the created file: " + ((String)globalMap.get("tWaitForFile_1_CREATED_FILE")));
  8. Double-click the second tJava to open its Basic settings view.
  9. In the code area, type in the following code:System.out.println("\r\nIteration loop ended at " + TalendDate.getCurrentDate()); System.out.println("Number of iterations finished: " + ((Integer)globalMap.get("tWaitForFile_1_CURRENT_ITERATION")));