Package org.apache.etch.compiler.opt

Examples of org.apache.etch.compiler.opt.AsyncReceiver


  /**
   * @return the async receiver mode.
   */
  public AsyncReceiverMode getAsyncReceiver()
  {
    AsyncReceiver ar = (AsyncReceiver) getOpt( "AsyncReceiver" );

    if (ar == null)
      return AsyncReceiverMode.NONE;

    return ar.getMode();
  }
View Full Code Here

TOP

Related Classes of org.apache.etch.compiler.opt.AsyncReceiver

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.