Package org.jboss.util

Examples of org.jboss.util.StopWatch.stop()


         // Send a notification that the startup is complete
         Notification msg = new Notification(START_NOTIFICATION_TYPE, this, 1);
         msg.setUserData(new Long(watch.getLapTime()));
         sendNotification(msg);

         watch.stop();

         if (jbossPackage != null)
         {
            // Tell the world how fast it was =)
            if (log != null)
View Full Code Here


         // Send a notification that the startup is complete
         Notification msg = new Notification(START_NOTIFICATION_TYPE, this, 1);
         msg.setUserData(new Long(watch.getLapTime()));
         sendNotification(msg);

         watch.stop();

         if (jbossPackage != null)
         {
            // Tell the world how fast it was =)
            log.info("JBoss (Microcontainer) [" + jbossPackage.getImplementationVersion() +
View Full Code Here

/*     */
/* 427 */       Notification msg = new Notification("org.jboss.system.server.started", this, 1L);
/* 428 */       msg.setUserData(new Long(watch.getLapTime()));
/* 429 */       sendNotification(msg);
/*     */
/* 431 */       watch.stop();
/*     */
/* 433 */       if (this.jbossPackage != null)
/*     */       {
/* 436 */         this.log.info("JBoss (Microcontainer) [" + this.jbossPackage.getImplementationVersion() + "] Started in " + watch);
/*     */       }
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.