Most voted "thread-queue" questions
6 questions
Sort by count of
-
4
votes1
answer1055
viewsHow to implement a thread queue to run one after the other?
I have a static method to record logs on my system. public class Logger { public static void SaveLog(string[] lines) { System.IO.File.WriteAllLines(@"C:\...\Temp\ExceptLog.txt", lines); } } The…
-
4
votes1
answer747
viewsHow 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 recording logs with Delphi 6. In the newer versions I have the…
-
3
votes3
answers1080
viewsOne process at a time PHP
I would like to know if there is a way to create a process queue. For example, whenever I have the file run processar.php, if it is already running, it would wait to be executed after the end of the…
-
3
votes1
answer476
viewsCreate Priority Queues in Delphi XE5
I would like to know how to create rows of objects with priority in Delphi, we know that the concept of queue is what first comes out first, I know there is already this function ready in Delphi,…
-
0
votes0
answers750
viewsWhat’s the best way to queue
Guys, what’s the best way to queue in java. For example I select 3 files, these files stay in a queue until the process of reading and generating the report is finished, as soon as the report is…
-
0
votes1
answer237
viewsHow to add elements in Queue (Queue) continuously?
Below I have a code that he needs to do the following: Create a thread, then start it. When starting the thread, according to the time (random time) the program adds a value in the queue, after…