Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Dec : Re: Indy10 - Get thread object
| Subject: | Re: Indy10 - Get thread object |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Fri, 15 Dec 2006 12:38:52 |
"Martin James" <nospam@dsl.pipex.com> wrote in message
news:4582bb0a$1@newsgroups.borland.com...
> Well, since the OnExecute event is run by the thread, you can call
> the GetCurrentThread API in the event to get a handle to the thread
> and change its priority.
That would be very inefficient, as OnExecute is triggered in a loop for each
connection. Also, like you said, a connection could jump from one thread to
another. And worse, if you use fibers, then you can have multiple
connections running on a single thread.
Gambit