Search the Community
Showing results for tags 'multithreading'.
Found 5 results
-
I new using TClientDataSet and would like some help. My application fetch heavy stream data from an external web-socket like API (from multiple channels), proccess it asap in worker threads and then show to the user when requested... nowdays I do it manually with lists, arrays and iterat...
- 5 replies
-
- delphi
- tclientdataset
-
(and 1 more)
Tagged with:
-
Hi everybody, I'm using Delphi 12 on Windows for Desktop applications. I've an FMX project done in single threaded mode (classical without threads) with timers and I have a problem with animation of objects inside frames! The project is structured like that : A m...
- 3 replies
-
- lag
- multithreading
-
(and 4 more)
Tagged with:
-
delphi Thread ITask.ExecuteWork not wait until Task finish in mobile devices?
bravesofts posted a topic in Cross-platform
i have this code here: fTask: ITask; fTask := TTask.Create( procedure begin while not True do Application.ProcessMessages; TThread.Synchronize(TThread.Current, procedure begin // update ui end); end); fTask.ExecuteWork; // this will stop here.. until [fTask] finish work !! In andr...- 24 replies
-
- android
- multithreading
-
(and 2 more)
Tagged with:
-
Stable Communication between ICS TSslWSocket and TSslWSocketServer
idontknow posted a topic in ICS - Internet Component Suite
Hello Community, since last week I have been trying to let a TsslWSocket and a TsslWSocketServer communicate with each other. I want to get a long-term stable connection between a TCP client and a TCP server that is secured with TLS1.3. However, after a runtime of a few minut...- 12 replies
-
- ics
- tsslwsocketserver
-
(and 2 more)
Tagged with:
-
Threads in PPL thread pool not returning to idle as expected
GeMeMe posted a topic in RTL and Delphi Object Pascal
Using Delphi 10.3.2 I've encountered the following problem (specifically on Windows, not sure about other platforms): After using TParallel or TTask, not all threads in the thread pool return to idle as expected. I've prepared the following simple example: procedure TForm.Button1Click(Sende...