Package sample.camel.quartz

Source Code of sample.camel.quartz.QuartzSample

package sample.camel.quartz;

import akka.actor.ActorSystem;
import akka.actor.Props;

public class QuartzSample {
  public static void main(String[] args) {
    ActorSystem system = ActorSystem.create("my-quartz-system");
    system.actorOf(Props.create(MyQuartzActor.class));
  }
}
TOP

Related Classes of sample.camel.quartz.QuartzSample

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.