Add config and formatter data set to concurrent map
This commit is contained in:
parent
0676972a83
commit
1a447f1954
@ -1,5 +1,8 @@
|
|||||||
package com.cubetiqs.money
|
package com.cubetiqs.money
|
||||||
|
|
||||||
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
import java.util.concurrent.ConcurrentMap
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default money config in static object.
|
* Default money config in static object.
|
||||||
* Sample parse format: USD=1,KHR=4000,EUR=0.99
|
* Sample parse format: USD=1,KHR=4000,EUR=0.99
|
||||||
@ -14,10 +17,10 @@ object MoneyConfig {
|
|||||||
* Key is the currency
|
* Key is the currency
|
||||||
* Value is the rate
|
* Value is the rate
|
||||||
*/
|
*/
|
||||||
private val config: MutableMap<String, Double> = mutableMapOf()
|
private val config: ConcurrentMap<String, Double> = ConcurrentHashMap()
|
||||||
|
|
||||||
// use to format the money for each value, if have
|
// use to format the money for each value, if have
|
||||||
private val configFormatter: MutableMap<String, MoneyFormatProvider> = mutableMapOf()
|
private val configFormatter: ConcurrentMap<String, MoneyFormatProvider> = ConcurrentHashMap()
|
||||||
|
|
||||||
// use to identified for config dataset with prefix mode
|
// use to identified for config dataset with prefix mode
|
||||||
private var configPrefix: String = ""
|
private var configPrefix: String = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user