I have noticed that scheduler.schedule in Akka does not work for schedules less than 10ms. For example I have tried below and I only receive a message every 10ms. Is it possible to reduce this, ie increase the frequency?
Thanks Des
akka.actor.ActorSystem("Test").actorOf(Props(new akka.actor.Actor {
val system = context.system
import system.dispatcher
system.scheduler.schedule(0 milliseconds, 2 milliseconds, self, "Test")
def receive = {
case msg =>
println("Received[" + System.currentTimeMillis + "]: " + msg)
}
}), "Test")