OmniThreadLibrary is a Delphi library meant to ease threading.
2
votes
1answer
146 views
Why is OmniThreadLibrary's ForEach blocking main thread?
Using the OmniThreadLibrary and Delphi XE4, I am hoping to run multiple threads that process data in the background, adding speed increases to my already existing code.
When calling the procedure ...
2
votes
2answers
74 views
How to pass params to Parallel.Async() in OmniThreadLibrary?
How does one pass some parameters from the main thread to the working thread (ie the following procedure)?
Parallel.Async(
procedure (const task: IOmniTask)
begin
//How does one pass in ...
3
votes
1answer
170 views
How to update progress indicator from a second thread?
I have a main form with a progress indicator on it.
In the datamodule I've ten datasets, each of them has an OnBeforeOpen event defined.
I would like to show through the progress bar in the main form ...
12
votes
1answer
519 views
Porting a multi-threading Delphi application to Mac: what are my choices?
I need to port an application (written in XE2) to Mac.
My application is split into a simple UI executable (single-threaded) and an invisible engine (which heavily relies on OmniThreadLibrary 3.02 ...
2
votes
2answers
344 views
How to determine cause of main thread not responding with Omni Thread Library?
Platform: Delphi with VirtualTreeView SVN 5.1.0 & OmniThreadLibrary 3 SVN & Delphi XE2
Originally I thought that the problem was VirtualTreeView. I need to add node to VST every 1s or ...
3
votes
2answers
242 views
How can I use more than 60 tasks in a task group?
How can I use more than 60 tasks in a Taskgroup? I can loop from 0 to N and create tasks but that will not give me any message handling. I use OTL EventMontior for sending messages from tasks..
The ...
1
vote
0answers
213 views
OTL - Kill Task on Demand
How can I kill task on Demand? When i do this:
CreateTask(TWorker.Create())
.Invoke(@TWorker.Execute)
.MonitorWith(FEventMonitor)
...
3
votes
2answers
334 views
Why is OmniThreadLibrary limited to 60 threads when .Net's limit is 32768?
I was recently comparing OmniThreadLibrary and ThreadPool that is in .NET and I found that Omni is much more restricted in maximum threads — 60 allowed — while .NET can go up to 32768 in .NET 4.0.
...
3
votes
2answers
121 views
How can I capture variables by anonymous method when using it in OTL?
What I want to do:
I have a few objects in a genric list. I want to capture each of this object in anonymous method and execute this method as a separate OTL Task.
This is a simplified example:
...
1
vote
1answer
89 views
Is it possible to reset/reinitialize a pipeline (or BackgroundWorker) in OmniThreadLibrary?
By re-initialize, I mean stop the running tasks (or even kill the threads if I have to) & revert back as if the pipeline/threads were never initialized / started.
My code (I'm using delphi 2010, ...
5
votes
0answers
261 views
How to replace TThread with OmniThreadLibrary? [closed]
I am used to create TThread descendants to do longlasting DB operations. My usual construct looks like this:
interface
type
TMyDBOp = class(TThread)
private
FConnection: TADOConnection;
...
0
votes
0answers
210 views
How best to convert multiple Delphi TTimer background scan tasks using Omnithread
I've started to look at using Omnithread to improve my Delphi Application using multithreading. Creating one or more worker tasks are well covered by the documentation so that long actions that I ...
1
vote
1answer
396 views
How to pause/resume threads in OmniThreadLibrary 3?
I want the main application thread to be able to pause / resume the other working threads, assuming this is possible, what's the best way to do this?
Any suggestion that would work on Windows XP (and ...
5
votes
1answer
239 views
Does OmnithreadLibrary support “work stealing”?
Work stealing is for example available in the Fork / Join framework on the Java platform. (See How is the fork/join framework better than a thread pool?) - is something similar possible with the ...
2
votes
3answers
266 views
OmniThreadLibrary: How to detect when all recursively scheduled (=pooled) threads have completed?
Let's say I have to recursively iterate over items stored in a tree structure in the background and I want to walk this tree using multiple threads from a thread pool (one thread per "folder" node). I ...
3
votes
1answer
1k views
Getting a Delphi TTimer to work with a multi-threading app
I have an issue with a simple TTimer that's initiated and have its OnTimer event executed in the main app thread, the code looks like this:
procedure TForm1.DoSomeStuff();
begin
...
1
vote
1answer
298 views
Is this a correct way of using OmniThreadLibrary - terminate the existing one then create a new one?
I use the excellent OmniThreadLibrary library to implement threaded source code parsing, the program need to abandon the existing parsing and restart the parsing whenever the source code is changed.
...
5
votes
2answers
435 views
How upload files to azure in background with Delphi and OmniThread?
I have tried to upload +100 files to azure with Delphi. However, the calls block the main thread, so I want to do this with a async call or with a background thread.
This is what I do now (like ...
4
votes
1answer
152 views
Execution point for other threads in Delphi 2010
I'm developing a multithreaded client app using Delphi 2010 (using the excellent OmniThreadLibrary) and I'm having hard time with debugging since I'm constantly swapping from one thread to another.
I ...
1
vote
1answer
348 views
How to empty OmniThreadLibrary ThreadPool Queue?
I just discovered OmniThreadLibrary & started playing with it. I'm trying to launch, say, no more than 20 tasks max and send the rest of the tasks to queue.
I modified the OmniThreadLibrary's ...
0
votes
3answers
271 views
Which is better for this project, procedural or object oriented? [closed]
I've been working through many trial/error versions of an image loading/caching system. Being Delphi, I've always been comfortable with Object Oriented Programming. But since I've started implementing ...
11
votes
5answers
791 views
How to implement thread which periodically checks something using minimal resources?
I would like to have a thread running in background which will check connection to some server with given time interval. For example for every 5 seconds.
I don't know if there is a good "desing ...
4
votes
0answers
573 views
Using DataSet returned by a datasnap ServerMethod in a thread?
I am calling a servermethod from within a thread using Omnithreadlibrary, the data is returned succesfully, but I have troubles using the data returned, everything i've tried goes with AccessViolation ...
5
votes
4answers
521 views
Multithreaded WinHttp downloads
I am creating a Delphi application to download files from the Internet and if the server supports range requesting it will be multi threaded. The progress is also relayed back to the GUI.
The current ...
19
votes
2answers
617 views
OmniThreadLibrary Overview
Is there a place where there is an introductory overview of the OmniThreadLibray for Delphi?
I have the current code installed in Delphi XE. The examples work. I've been looking over the associated ...
3
votes
1answer
224 views
IOmniWorker: Where goes the function to execute within the Task?
I am creating an OmniWorker-Task to do some data processing.
So far, the Task is able to receive and send messages from/to other tasks.
Now I need to implement the main function for this task. This ...
2
votes
1answer
304 views
Is it possible to send messages between Tasks (OmniThreadLibrary)?
My app will have several tasks for various actions.
All tasks are created in FormCreate and terminated in FormDestroy, they are always running as long as the app is running.
The main thread's only ...
3
votes
2answers
531 views
How to access thread variable using OmniThreadLibrary?
This seems to be an easy task, I just don't know which way to start using OmniThreadLibrary:
I create a Task that does some processing in the background. The results are stored in fields of the task ...
2
votes
3answers
813 views
Memory Leak using VirtualTreeview and OTL
I had created a small multi threaded application and I am trying to convert it to use OmniThreadLibrary. I am using the Virtualtreeview to display a log and the status/results. The Vst Log only has ...
11
votes
4answers
2k views
Delphi - Threading frameworks [closed]
I am looking for a Threading framework to use in my Delphi application.
Currently I am evaluating ‘OmniThreadLibrary’ - so far it looks good and does everything I need.
Is there any other ...