observationQueueLength = PropertiesUtil.toInteger(prop(
config, bundleContext, OBSERVATION_QUEUE_LENGTH), DEFAULT_OBSERVATION_QUEUE_LENGTH);
if(PropertiesUtil.toBoolean(prop(
config, bundleContext, COMMIT_RATE_LIMIT), DEFAULT_COMMIT_RATE_LIMIT)) {
commitRateLimiter = new CommitRateLimiter();
} else {
commitRateLimiter = null;
}
whiteboard = new OsgiWhiteboard(bundleContext);