Example #1
0
 /*
  * 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); }
Example #2
0
 /*
  * 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);}