Move state of ClusterHeartbeatSender to separate immutable class, see #2284

This commit is contained in:
Patrik Nordwall 2012-10-10 15:23:18 +02:00
parent 668d5a5013
commit 66c81e915e
3 changed files with 221 additions and 75 deletions

View file

@ -18,7 +18,7 @@ import java.util.Arrays
* hash, i.e. make sure it is different for different nodes.
*
*/
class ConsistentHash[T: ClassTag] private (nodes: SortedMap[Int, T], virtualNodesFactor: Int) {
class ConsistentHash[T: ClassTag] private (nodes: SortedMap[Int, T], val virtualNodesFactor: Int) {
import ConsistentHash._