// the Map MUST be thread safe
this.partitionManagers = new ConcurrentHashMap<RuleBasePartitionId, PartitionTaskManager>();
for ( RuleBasePartitionId partitionId : this.ruleBase.getPartitionIds() ) {
this.partitionManagers.put( partitionId,
new PartitionTaskManager( this ) );
}
}
}