All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rapi.core.1.3.source-code.akka.conf Maven / Gradle / Ivy

akka {
	loglevel = INFO
	
	# Used to set the behavior of the scheduler.
	# Changing the default values may change the system behavior drastically so make sure
	# you know what you're doing! See the Scheduler section of the Akka documentation for more details.
	scheduler {
		# The HashedWheelTimer (HWT) implementation from Netty is used as the default scheduler
		# in the system.
		# HWT does not execute the scheduled tasks on exact time.
		# It will, on every tick, check if there are any tasks behind the schedule and execute them.
		# You can increase or decrease the accuracy of the execution timing by specifying smaller
		# or larger tick duration.
		# If you are scheduling a lot of tasks you should consider increasing the ticks per wheel.
		# For more information see: http://www.jboss.org/netty/
		tick-duration = 10ms
		ticks-per-wheel = 512
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy