我在我的dll中使用OmniThreadLibrary 2.09,主应用程序和dll使用相同的SimpleShareMem
内存管理器。
我使用以下代码创建了自己的监视器:
FMonitor: TOmniEventMonitor;
...
FMonitor := TOmniEventMonitor.Create(nil);
当我尝试使用此监视器创建新任务时,我收到错误“只能使用单个监视器监视任务”
FTask := OtlTaskControl.CreateTask(TaskWorker)
.OnMessage(
procedure(const ATaskControl: IOmniTaskControl; const AMsg: TOmniMessage)
begin
...
end)
.MonitorWith(FMonitor) // <----- Error
.OnTerminated(
procedure (const ATaskControl: IOmniTaskControl)
begin
...
end)
.Run();
如何使用自己的显示器监控我的任务?
答案 0 :(得分:7)
OnMessage函数创建隐式监视器,它接收任务消息并调用您的匿名函数。 OnTerminated也一样。
如果您希望使用MonitorWith,您应该将消息处理和终止处理实现为监视器事件,而不是使用OnMessage / OnTerminated函数。