I want t to execute an assembly in a multi threaded fashion. For this I am using a Folder Watcher and whenever a file is created I have a task that executes the assembly. As per my understanding if I uncheck “Do not run job if it’s running” then for each file that gets created there will a an instance of a dll(assembly) that gets created.
So For example if 1000 files are created simultaneously, then 1000 instances of dll will be created, is there a way to control this number?.
If we do not support multi threading then the processing of files will be very difficult as the client needs to wait for a long time.
Any help would be really appreciated.