/**
  * Opens and starts a client connection to a remote node to transfer data through
  *
  * @param node Remote node
  * @return Connection between both nodes
  */
 public static Connection startConnection(Node node) {
   return em.startConnection(node);
 }