Examples of stopAction()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2CubicInstance.stopAction()

          }
          // TODO: Should remove first cubic summoned and replace with new cubic
          if (player.getCubics().containsKey(_npcId))
          {
            L2CubicInstance cubic = player.getCubic(_npcId);
            cubic.stopAction();
            cubic.cancelDisappear();
            player.delCubic(_npcId);
          }
          if (player.getCubics().size() > mastery) continue;
          if (player == activeChar)
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2CubicInstance.stopAction()

      if (mastery < 0)
        mastery = 0;
      if (activeChar.getCubics().containsKey(_npcId))
      {
        L2CubicInstance cubic = activeChar.getCubic(_npcId);
        cubic.stopAction();
        cubic.cancelDisappear();
        activeChar.delCubic(_npcId);
      }
      if (activeChar.getCubics().size() > mastery) {
        if (Config.DEBUG)
View Full Code Here

Examples of net.sf.jdistunit.platform.action.ITestThread.stopAction()

        // If not all threads finished successfully, stop all remaining
        // test threads -- they are timed out, and may die peacefully.
        if (!isThreadsDone) {
            for (ITestThread thread : testList) {
                thread.stopAction();
            }
        }
    }

    /**
 
View Full Code Here

Examples of net.sf.jdistunit.platform.action.ITestThread.stopAction()

        OS.sleep(200);

        // Sleep 1 second; this should be enough to read 10 lines.
        // Then stop the action.
        OS.sleep(1000);
        thread.stopAction();
        assertTrue(thread.isActionStopped());

        // Get the action result.
        ITestActionResult result = thread.getActionResult();
        assertNotNull(result);
View Full Code Here

Examples of net.sf.jdistunit.platform.action.TestThread.stopAction()

        // If not all threads finished successfully, stop all remaining
        // test threads -- they are timed out, and may die peacefully.
        if (!isThreadsDone) {
            for (ITestThread thread : testList) {
                thread.stopAction();
            }
        }
    }

    /**
 
View Full Code Here

Examples of net.sf.jdistunit.platform.action.TestThread.stopAction()

        OS.sleep(200);

        // Sleep 1 second; this should be enough to read 10 lines.
        // Then stop the action.
        OS.sleep(1000);
        thread.stopAction();
        assertTrue(thread.isActionStopped());

        // Get the action result.
        ITestActionResult result = thread.getActionResult();
        assertNotNull(result);
View Full Code Here

Examples of org.apache.cassandra.stress.StressAction.stopAction()

            {
                try
                {
                    if (in.readInt() == 1)
                    {
                        action.stopAction();
                        break;
                    }
                }
                catch (Exception e)
                {
View Full Code Here

Examples of org.apache.cassandra.stress.StressAction.stopAction()

            {
                try
                {
                    if (in.readInt() == 1)
                    {
                        action.stopAction();
                        break;
                    }
                }
                catch (Exception e)
                {
View Full Code Here

Examples of org.auraframework.service.LoggingService.stopAction()

                action.run();
            } catch (AuraExecutionException x) {
                Aura.getExceptionAdapter().handleException(x, action);
            } finally {
                context.setCurrentAction(oldAction);
                loggingService.stopAction(aap);
            }
            loggingService.startTimer(LoggingService.TIMER_SERIALIZATION);
            loggingService.startTimer(LoggingService.TIMER_SERIALIZATION_AURA);
            try {
                json.writeArrayEntry(action);
View Full Code Here

Examples of org.auraframework.system.LoggingContext.stopAction()

   
    @Override
    public void stopAction(String actionName) {
        LoggingContext lc = getLoggingContext();
        if (lc != null) {
            lc.stopAction(actionName);
        }
    }
   
    @Override
    public void stopTimer(String name) {
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.