Package org.jboss.errai.cdi.test.stress.client.shared

Examples of org.jboss.errai.cdi.test.stress.client.shared.TickEvent


      @Override
      public void run() {
        try {
          System.out.print("Firing " + config.getMessageCount() + " ticks... ");
          for (int i = 0; i < config.getMessageCount(); i++) {
            tickEvent.fire(new TickEvent(nextEventId.getAndIncrement(), System.currentTimeMillis(), payload));
          }
        } catch (Throwable t) {
          t.printStackTrace(System.out);
        } finally {
          System.out.println("done. (interrupted=" + Thread.currentThread().isInterrupted() + ")");
View Full Code Here

TOP

Related Classes of org.jboss.errai.cdi.test.stress.client.shared.TickEvent

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.