Package com.vmware.aurora.stats

Examples of com.vmware.aurora.stats.StatsType


      AuAssert.check(isSubscribed(e));   // Should not see unsubscribed events.
      boolean external = taskMgr.eventFireCallback(e);
      HashMap<VcEventType, List<IVcEventHandler>> hMap = getHandlerMap(external);
      for (VcEventType eventType : hMap.keySet()) {
         if (eventType.isInstance(e)) {
            StatsType oldSrc = Profiler.pushInc(
                  external? StatsType.VC_EVENT_EXT : StatsType.VC_EVENT_INT, eventType);
            List<IVcEventHandler> handlers = hMap.get(eventType);
            for (IVcEventHandler h : handlers) {
               h.eventHandler(eventType, e);
            }
View Full Code Here


      throw catchedException;
   }

   private VcObject waitForCompletionIntenal() throws Exception {
      Task task = getManagedObject();
      StatsType oldSrc = Profiler.pushInc(StatsType.VC_TASK_WAIT, getType());
      long lastWaitStartedNanos ;
      long waitFinishedNanos = System.nanoTime();

      state = task.getInfo().getState();
      while (state != State.success) {
View Full Code Here

TOP

Related Classes of com.vmware.aurora.stats.StatsType

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.