Examples of updateLastMessageDate()


Examples of com.pragprog.aebook.persistchat.ChatRoom.updateLastMessageDate()

          message.setDate(timestamp);
          Query query = persister.newQuery();//(3)
          query.setFilter("chat == " + message.getChat());
          List<ChatRoom> chats = (List<ChatRoom>) query.execute();
          ChatRoom chat = chats.get(0);//(4)
          chat.updateLastMessageDate(timestamp);//(5)
      } finally {
          persister.close();
      }
  }
/* 
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.