C++ Actor Framework 允许对 Actor 进行强类型化。框架是否也支持类型化actor的继承?
问问题
168 次
1 回答
1
是的 - 只要新类型响应实例支持的消息子集,typed_actor 实例就可以被视为不同的 typed_actor 类型。这是一个例子,其中 c_type/C 是 a_type 和 b_type 的超类型:
#include <iostream>
#include "caf/all.hpp"
using namespace caf;
using namespace std;
using a_type = typed_actor<replies_to<int>::with<void>>;
using b_type = typed_actor<replies_to<double>::with<void>>;
using c_type = a_type::extend<replies_to<double>::with<void>>;
class C : public c_type::base
{
protected:
behavior_type make_behavior() override
{
return
{
[this](int value)
{
aout(this) << "Received integer value: " << value << endl;
},
[this](double value)
{
aout(this) << "Received double value: " << value << endl;
},
after(chrono::seconds(5)) >> [this]
{
aout(this) << "Exiting after 5s" << endl;
this->quit();
}
};
}
};
void testerA(const a_type &spawnedActor)
{
scoped_actor self;
self->send(spawnedActor, 5);
}
void testerB(const b_type &spawnedActor)
{
scoped_actor self;
self->send(spawnedActor, -5.01);
}
int main()
{
auto spawnedActor = spawn<C>();
testerA(spawnedActor);
testerB(spawnedActor);
await_all_actors_done();
}
注意:CAF 0.14.0 用户手册中有一个示例显示了它是如何工作的,但是 CAF 0.14.4 删除了 spawn_typed 方法,该方法可以内联创建/生成 typed_actor。有关详细信息,请参阅相应的 GitHub问题。
于 2015-12-10T17:16:33.437 回答