コード例 #1
0
ファイル: inter.hpp プロジェクト: DanieleDeSensi/Peafowl
 /*
  * It sends one message to the targeted node.
  *
  * \param msgs is the message to be sent.
  */
 inline bool put(const tosend_t& msg) { return impl.put(msg); }
コード例 #2
0
ファイル: inter.hpp プロジェクト: DanieleDeSensi/Peafowl
 /*
  * It sends one message to the targeted node.
  *
  * \param msgs is the message to be sent.
  * \param toNode is the address of the node, where the message is intended
  * to be sent.
  */
 inline bool put(const tosend_t& msg, const int toNode) { return impl.put(msg,toNode);}