Questions tagged as 'fila-thread'

1
answer

How to implement a process queue in Delphi 6?

How to implement a process queue in Delphi 6 as the TThread.Queue of the newer versions? What I need is to implement a queue for logging with Delphi 6. In newer versions I have the ability to use: procedure TFormClient.QueueLogMs...
asked by 25.06.2014 / 15:53
1
answer

How to implement a thread queue to run one after another?

I have a static method to write logs to my system. public class Logger { public static void SaveLog(string[] lines) { System.IO.File.WriteAllLines(@"C:\...\Temp\ExceptLog.txt", lines); } } The method is used in several p...
asked by 19.06.2014 / 05:12
3
answers

One process at a time PHP

I would like to know if there is a way to create a queue of processes. For example, whenever I run the processar.php file, if it is already running, it will wait to run after the other is finished. Being run only when "free";     
asked by 19.07.2016 / 19:55
1
answer

Creating Priority Queues in Delphi XE5

I would like to know how to create priority object queues in Delphi, we know that the queue concept is what comes in first, it comes out first, I know that Delphi is already there, but I need to expand this function to work with priority . My ne...
asked by 19.08.2014 / 14:16
1
answer

How to add elements in Queue continuously?

Below I have a code that it needs to do the following: Create a thread, then start it. When you start the thread, according to the time (random time) the program adds a value in the queue, after being added to the queue, it needs to show how man...
asked by 01.05.2018 / 02:13
0
answers

What is the best way to queue up

Well, what's the best way to queue up in java? For example I select 3 files, these files stay in a queue until the process of reading and generating the report is finalized, as soon as the report is generated the other file goes into execution....
asked by 13.04.2015 / 22:09