Examples of recordSeen()


Examples of com.uwyn.drone.modules.seenmanagement.DatabaseSeen.recordSeen()

  {
    SeenData    seen_data = new SeenData(nick, new Timestamp(Calendar.getInstance().getTimeInMillis()), fullMessage.getTrailing(), fullMessage.getRaw());
    DatabaseSeen  database_seen = DatabaseSeenFactory.get();
    try
    {
      database_seen.recordSeen(bot, channel, seen_data);
    }
    catch (SeenManagerException e)
    {
      Logger.getLogger("com.uwyn.drone.modules").severe(ExceptionUtils.getExceptionStackTrace(e));
    }
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.