11-21-2019 10:12 AM - edited 11-21-2019 10:16 AM
Hello All,
I would like to create a SequenceFileUnload callback to my client sequence files, which would start a parallel thread starting a sequence of another sequence file.
This new Thread would perform some actions (access) on the client sequence file itself , but always returns with an error, because the client sequence file is not closed until the parallel thread is running.
I already unchecked the "Automatically Wait for the Thread to Complete..." setting
Thank you in advance for you help and time.
Solved! Go to Solution.
11-21-2019 04:51 PM
I would do it in a new execution. Executions cannot complete until all threads are completed. So you can't operate on the file because it won't be done until the thread it spawned completes. Executions, however, are different.
11-22-2019 01:36 AM
11-22-2019 08:01 AM
11-22-2019 09:45 AM
Glad you got it working!!