Examples of markMessagesDelivered()


Examples of games.stendhal.server.core.engine.db.PostmanDAO.markMessagesDelivered()

  @Override
  public void execute(DBTransaction transaction) throws SQLException {
    PostmanDAO dao = DAORegister.get().get(PostmanDAO.class);
    messages = dao.getChatMessages(transaction, player.getName());
    // mark the messages delivered in the same transaction that we got them in
    dao.markMessagesDelivered(transaction, player.getName());
  }

  /**
   * gets the list of messages
   *
 
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.