* @rkuhn found the problems in the scala camel samples - HttpSample returns scrambled data - CustomRouteSample times out
11 lines
284 B
Java
11 lines
284 B
Java
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));
|
|
}
|
|
}
|