问题
I'm using OmniThreadLibrary to implement a background pipleline for sending emails (refer to this SO question). I notice that after closing the application, it continues running in the background (seen in Windows Task Manager). That means that there is something wrong in my code in the way I implemented the OTL pipeline. Can you help me identify the trouble?
Code follows:
unit uEmailQueue;
interface
uses Classes, OtlCommon, OtlCollections, OtlParallel, Windows;
type
TEmailServer = record
SMTPHost: String;
SMTPPort: Integer;
SMTPUseSSL: Boolean;
SMTPUserName: String;
SMTPPassword: String;
SMTPSenderName: String;
end;
TEmailMessage = record
RecipientEmailAddr: String;
EmailSubject: String;
EmailMessage: String;
end;
TEmailQueue = class(TObject)
private
FEmailServer: TEmailServer;
FPipeline: IOmniPipeline;
procedure SendEmailStage(const input, output: IOmniBlockingCollection);
public
constructor Create;
destructor Destroy; override;
procedure SendEmail(AEmailMessage: TEmailMessage);
end;
implementation
{ TEmailQueue }
procedure TEmailQueue.SendEmailStage(const input, output: IOmniBlockingCollection);
var
mailmessage: TOmniValue;
begin
for mailmessage in input do
begin
Beep(3700, 1500); // just some dummy code for now
end;
end;
constructor TEmailQueue.Create;
begin
FPipeline := Parallel.pipeline.Stage(SendEmailStage).Run;
end;
destructor TEmailQueue.Destroy;
begin
inherited;
end;
procedure TEmailQueue.SendEmail(AEmailMessage: TEmailMessage);
begin
FPipeline.input.Add(TOmniValue.FromRecord(AEmailMessage));
// FPipeline.input.CompleteAdding;
// FPipeline.WaitFor(INFINITE);
end;
end.
I initialize and call the above class like this:
In the application's main form's OnCreate event:
FEmailQueue := TEmailQueue.Create;
A button on the main form has this in the OnClick event:
var
em: TEmailMessage;
begin
FEmailQueue.SendEmail(em);
later, I free the class like this in the main form's OnDestroy event:
FEmailQueue.Free;
回答1:
You should call FPipeline.input.CompleteAdding
from TEmailQueue.Destroy
. Otherwise, SendEmailStage
will never stop.
来源:https://stackoverflow.com/questions/30808504/why-does-my-application-using-omnithreadlibrary-parallel-pipeline-continue-remai