Exemplo n.º 1
0
 private ChatCache() {
   // singleton
   Map<ChatRoom, SortedMap<Date, ChatMessage>> chatCache = SynchroCache.get("ChatCache");
   if (chatCache == null) {
     chatCache = Maps.newHashMap();
   }
   init(chatCache);
 }