Home
last modified time | relevance | path

Searched defs:msgName (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore-src/source/mindspore/core/mindrt/include/actor/
Dactor.h43 inline void AddMsgRecord(const std::string &msgName) { in AddMsgRecord()
122 …void Receive(const std::string &msgName, void (T::*method)(mindspore::AID, std::string &&, std::st… in Receive()
129 …void Receive(const std::string &msgName, void (T::*method)(const mindspore::AID &, std::string &&,… in Receive()
137 void ReceiveUdp(const std::string &msgName, in ReceiveUdp()
Dactorapp.h46 int Send(const std::string &to, const std::string &msgName, std::unique_ptr<M> msg) { in Send()
55 void Receive(const std::string &msgName, void (T::*method)(const AID &, std::unique_ptr<M>)) { in Receive()
/third_party/mindspore/mindspore-src/source/mindspore/core/mindrt/src/actor/
Dactor.cc151 void ActorBase::Receive(const std::string &msgName, ActorFunction &&func) { in Receive()