Package erjang

Examples of erjang.EAbstractNode


    } else if ((tup=found.testTuple()) != null
          && tup.arity()==2
          && (name=tup.elm(1).testAtom()) != null
          && (node=tup.elm(2).testAtom()) != null) {
     
      EAbstractNode n = EAbstractNode.get_or_connect(self, node);
      if (n != null) {
        n.dsig_demonitor(self.self_handle(), r, name);
      }
    }

   
    if (flush && (self instanceof EProc)) {
View Full Code Here


   
    if (aname == null || aflag == null || sopts == null) {
      throw ERT.badarg(node, flag);
    }
   
    EAbstractNode n = EPeer.get(aname);
    if (n == null) {
      return dmonitor_node3_trap.invoke(proc, new EObject[]{aname, aflag, opts});
    } else {     
      n.monitor_node(proc.self_handle(), aflag==ERT.TRUE);
      return ERT.TRUE;
    }
   
  }
View Full Code Here

    // nk.add_flag( F_DISTRIBUTION );
   
    set_this_node(node, cr.value);
    erts_is_alive = ERT.TRUE;

    EAbstractNode n = EPeer.get(node);
    n.node_up(null/*??*/, ERT.NIL);

    return ERT.TRUE;
  }
View Full Code Here

TOP

Related Classes of erjang.EAbstractNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.