Sends a message to the node.
// if the other node uses the same JSON protocol node.sendMessage(`{"reply_with":12}`); server += (NodeMessageEvent event) { if(node == event.node) { assert(parseJSON(cast(string)event.payload)["reply"].integer == 12); } }
See Implementation
Sends a message to the node.