Lines Matching defs:Ctx
46 template<typename Ctx>
48 friend class DfsuActor<Ctx>;
53 virtual void operator()(Ctx *ctx) = 0;
64 template<typename Ctx, typename... Args>
65 class DfsuCmd : public VirtualCmd<Ctx> {
66 friend class DfsuActor<Ctx>;
69 DfsuCmd(void (Ctx::*f)(Args...), Args... args) : f_(f), args_(args...) {}
73 void (Ctx::*f_)(Args...);
76 void operator()(Ctx *ctx) override
78 if (!VirtualCmd<Ctx>::option_.tryTimes_) {
82 VirtualCmd<Ctx>::option_.tryTimes_--;