Package swarm.javaflow

Source Code of swarm.javaflow.SwarmReference

package swarm.javaflow;

import org.apache.commons.javaflow.Continuation;

import swarm.ContinuationContext;

public abstract class SwarmReference<A> {
  SwarmNode location = SwarmNode.getLocal();

  public A get() {
    if (!location.isLocal()) {
      ContinuationContext cc = (ContinuationContext) Continuation.getContext();
      cc.switchTo = location;
      Continuation.suspend();
    }
    return getDelegate();
  }

  protected abstract A getDelegate();
 
}
TOP

Related Classes of swarm.javaflow.SwarmReference

TOP
Copyright © 2018 www.massapi.com. 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.