這是我對這件事的第二個問題,即時通訊有一些麻煩。我只是想創建有限數量的線程(在這種情況下,我想要10個線程),然後每個線程都會在列表中選取一個名稱,並在我的站點中獲取一些數據。delphi中的多線程隊列?
我的系統運行得很好,但我的多線程系統仍然無法=(
-
我試圖張貼LU RD的代碼,但主線程不等待線程完成排隊,只是停止=(
代碼:
uses
Classes,SyncObjs,Generics.Collections;
Type
TMyConsumerItem = class(TThread)
private
FQueue : TThreadedQueue<TProc>;
FSignal : TCountDownEvent;
protected
procedure Execute; override;
public
constructor Create(aQueue : TThreadedQueue<TProc>; aSignal : TCountdownEvent);
end;
constructor TMyConsumerItem.Create(aQueue: TThreadedQueue<TProc>; aSignal : TCountDownEvent);
begin
Inherited Create(false);
Self.FreeOnTerminate := true;
FQueue := aQueue;
FSignal := aSignal;
end;
procedure TMyConsumerItem.Execute;
var
aProc : TProc;
begin
try
repeat
FQueue.PopItem(aProc);
if not Assigned(aProc) then
break; // Drop this thread
aProc();
until Terminated;
finally
FSignal.Signal;
end;
end;
procedure DoSomeJob(myListItems : TStringList);
const
cThreadCount = 10;
cMyQueueDepth = 100;
var
i : Integer;
aQueue : TThreadedQueue<TProc>;
aCounter : TCountDownEvent;
function CaptureJob(const aString : string) : TProc;
begin
Result :=
procedure
begin
// Do some job with aString
end;
end;
begin
aQueue := TThreadedQueue<TProc>.Create(cMyQueueDepth);
aCounter := TCountDownEvent.Create(cThreadCount);
try
for i := 1 to cThreadCount do
TMyConsumerItem.Create(aQueue,aCounter);
for i := 0 to myListItems.Count-1 do begin
aQueue.PushItem(CaptureJob(myListItems[i]));
end;
finally
for i := 1 to cThreadCount do
aQueue.PushItem(nil);
aCounter.WaitFor; // Wait for threads to finish
aCounter.Free;
aQueue.Free;
end;
end;
我的其他問題:Multi Thread Delphi
使用Delphi XE3的Im。
請添加代碼來演示您的問題。這裏的代碼工作正常。 – 2013-04-25 06:05:18
OmniThreadLibrary同時擁有線程池和無鎖多線程隊列類 – 2013-04-25 10:37:38
@LU RD,問題是主線程在線程完成工作之前只是推零。我真的不知道爲什麼=(.man線程隊列很難做到._。 – Kirito94 2013-04-25 13:54:21