moquette-io / moquette

Java MQTT lightweight broker
http://moquette-io.github.io/moquette/
Apache License 2.0
2.31k stars 818 forks source link

is type error? #139

Closed sinozozo closed 8 years ago

sinozozo commented 8 years ago

in MapDBMessagesStore class file, the filed "m_inFlightIds" is Map<String, AtomicLong>,but in MapDBSessionsStore ,the filed is ConcurrentMap<String, Map<Integer, String>> ,is it right?

andsel commented 8 years ago

Hi the m_inflighIds map and related methods has been moved from MapDBMessagesStore to MapDBSessionsStore. Beeing provided by MapDB it's already thread safe, the code doesn't use any method from ConcurrentMap so it's correct to keep it simply a Map.