Package swarm

Source Code of swarm.Main

package swarm;

import org.apache.commons.javaflow.Continuation;

import swarm.javaflow.ContTest;

public class Main {
  public static void main(String[] args) {
    Continuation c = Continuation.startWith(new ContTest());
    System.out.println("returned a continuation");
    Continuation d = Continuation.continueWith(c);
    System.out.println("returned another continuation");
  }
}
TOP

Related Classes of swarm.Main

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.