好吧,我真的不知道我的代码有什么问题,以及发生了什么
class Activity
具有以下方法
protected struct EventParams
{
public object sender;
public EventArgs e;
}
private EventParams WaitEventRaise_Body(ref EventHandler<EventArgs> handler, int timeout)
{
AutoResetEvent receiver = new AutoResetEvent(false);
EventParams result = new EventParams();
EventHandler<EventArgs> handle = new EventHandler<EventArgs>((sender, e) =>
{
result.e = e;
result.sender = sender;
receiver.Set();
});
handler += handle;
if (timeout > 0)
{
receiver.WaitOne(timeout);
}
else
{
receiver.WaitOne();
}
return result;
}
protected EventParams WaitEventRaise(ref EventHandler<EventArgs> handler)
{
return WaitEventRaise_Body(ref handler, -1);
}
protected EventParams WaitEventRaise(ref EventHandler<EventArgs> handler, int timeout)
{
return WaitEventRaise_Body(ref handler, timeout);
}
好的,所以我发现自己一遍又一遍地写了AutoResetEvent,所以我决定创建一个方法。但是当我尝试从派生类Bot : Activity
EventParams eventResult = WaitEventRaise(ref currentJob.JobReported);
给出
错误30最佳重载方法匹配 Project.Activity.WaitEventRaise(REF System.EventHandler)'有一些无效的参数
currentJob是一个具有事件
的Job : Activity
类
public event EventHandler<JobReport> JobReported;
和
class JobReport : EventArgs
我想要做的是有一个机器人的东西做工作,实际上它创造了工作并等待他们完成他们的工作。 Job类在内部引发事件,使bot类注意到它完成了它的工作。机器人类等到工作提出事件。所以我希望它清楚。我很遗憾英语不是我的母语。
答案 0 :(得分:7)
基本上,你不能参考这样的事件。两个选项:
传递代理以“添加处理程序”和“删除处理程序”:
EventParams eventResult =
WaitEventRaise<JobReport>(handler => currentJob.JobReported += handler,
handler => currentJob.JobReported -= handler);
其中WaitEventRaise
将被声明为:
EventParams WaitEventRaise<T>(Action<EventHandler<T>> add,
Action<EventHandler<T>> remove)
where T : EventArgs
传递与您使用反射获取的事件相对应的EventInfo
这些都不是非常令人愉快 - 这也是Rx遇到的问题。
答案 1 :(得分:0)
我不知道Job
类包含什么或currentJob.JobReported
是什么,但从错误WaitEventRaise
方法判断需要System.EventHandler
这是一种类似
private void MeMethod(object sender, EventArgs e)
{
}