Package etch.compiler.opt

Examples of etch.compiler.opt.Oneway


   * @return true if this is a oneway message which does not wait
   * for any response from the other end.
   */
  public boolean isOneway()
  {
    Oneway oneway = (Oneway) getOpt( "Oneway" );
    return oneway != null && oneway.isOneway();
  }
View Full Code Here


   * @return true if this is a oneway message which does not wait
   * for any response from the other end.
   */
  public boolean isOneway()
  {
    Oneway oneway = (Oneway) getOpt( "Oneway" );
    return oneway != null && oneway.isOneway();
  }
View Full Code Here

TOP

Related Classes of etch.compiler.opt.Oneway

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.