Package org.apache.droids.monitor

Examples of org.apache.droids.monitor.WorkBean


    } ) )
    {
      @Override
      protected void populateItem(final Item<WorkBean> item)
      {
        WorkBean bean = item.getModelObject();
        long elapsed = System.currentTimeMillis() - bean.getStartTime().getTime();
        item.add( new Label("time", elapsed+"" )); //DurationFormatUtil.formatDurationHMS(elapsed) ) );
        item.add( new Label("text", bean.getTask().toString() ) );
      }
    });
    tmDIV.add( workers );
    WebMarkupContainer threads = new WebMarkupContainer( "threads" );
    threads.add( new AjaxEditableChoiceLabel<Integer>("count",
View Full Code Here

TOP

Related Classes of org.apache.droids.monitor.WorkBean

Copyright © 2018 www.massapicom. 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.