Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If I could run both tFileList and tWaitForFile in parallel, that would solve this problem,
3. Is it possible / safe to run to Iterate components at the same time (for example the global fileName variable may be being written/read from at the same time by 2 different threads....
context.condtion1=false;
String fileName=(String)globalMap.get("tWaitForFile_1_FILENAME");
if(globalMap.get(fileName)==null){
context.condtion1=true;
globalMap.put(fileName,fileName);
}else{
context.condtion1=false;
}
context.condtion2=false;
String fileName=((String)globalMap.get("tFileList_1_CURRENT_FILE"));
if(globalMap.get(fileName)==null){
context.condtion2=true;
globalMap.put(fileName,fileName);
}else{
context.condtion2=false;
}
There is also very little in the way of recommendations as to when to use iterate vs. main links.
If I could run both tFileList and tWaitForFile in parallel, that would solve this problem,
3. Is it possible / safe to run to Iterate components at the same time (for example the global fileName variable may be being written/read from at the same time by 2 different threads....
context.condtion1=false;
String fileName=(String)globalMap.get("tWaitForFile_1_FILENAME");
if(globalMap.get(fileName)==null){
context.condtion1=true;
globalMap.put(fileName,fileName);
}else{
context.condtion1=false;
}
context.condtion2=false;
String fileName=((String)globalMap.get("tFileList_1_CURRENT_FILE"));
if(globalMap.get(fileName)==null){
context.condtion2=true;
globalMap.put(fileName,fileName);
}else{
context.condtion2=false;
}
There is also very little in the way of recommendations as to when to use iterate vs. main links.
but I think there may be many more features that I have not found the docs for... I think there is a whole section I am missing.