Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/mindrt/include/actor/
Dactor.h42 inline void AddMsgRecord(const std::string &msgName) { in AddMsgRecord()
118 …void Receive(const std::string &msgName, void (T::*method)(mindspore::AID, std::string &&, std::st… in Receive()
125 …void Receive(const std::string &msgName, void (T::*method)(const mindspore::AID &, std::string &&,… in Receive()
133 void ReceiveUdp(const std::string &msgName, in ReceiveUdp()
Dactorapp.h47 int Send(const std::string &to, const std::string &msgName, std::unique_ptr<M> msg) { in Send()
56 void Receive(const std::string &msgName, void (T::*method)(const AID &, std::unique_ptr<M>)) { in Receive()
/third_party/mindspore/mindspore/core/mindrt/src/actor/
Dactor.cc153 void ActorBase::Receive(const std::string &msgName, ActorFunction &&func) { in Receive()