Package erjang

Examples of erjang.EHandle


    }
  }

  private void inet_reply_ok(EHandle caller2) throws Pausable {
    ETuple msg = ETuple.make(am_inet_reply, port(), ERT.am_ok);
    EHandle caller = this.caller;
    this.caller = null;

    if (log.isLoggable(Level.FINER) && caller != null) {
      log.finer("sending to " + caller + " ! " + msg);
    }
View Full Code Here


  private boolean inet_reply_error(EObject reason) throws Pausable {
    /*
     * send message:* {inet_reply, Port, Ref, {error,Reason}}
     */
    EHandle caller = this.caller;
    this.caller = null;
    ETuple msg = ETuple.make(am_inet_reply, port(), new ETuple2(
        ERT.am_error, reason));
    if (portlog.isLoggable(Level.FINER)) {
      portlog.finer("sending to " + caller + " ! " + msg);
View Full Code Here

TOP

Related Classes of erjang.EHandle

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.