Tabnine Logo
PipeLine.clearAll
Code IndexAdd Tabnine to your IDE (free)

How to use
clearAll
method
in
us.ihmc.tools.taskExecutor.PipeLine

Best Java code snippets using us.ihmc.tools.taskExecutor.PipeLine.clearAll (Showing top 14 results out of 315)

origin: us.ihmc/IHMCHumanoidBehaviors

@Override
public void onBehaviorAborted()
{
 pipeLine.clearAll();
}
origin: us.ihmc/ihmc-humanoid-behaviors

@Override
public void onBehaviorAborted()
{
 pipeLine.clearAll();
}
origin: us.ihmc/IHMCHumanoidBehaviors

@Override
public void onBehaviorAborted()
{
 onBehaviorExited();
 this.pipeLine.clearAll();
 for (AbstractBehavior behavior : behaviors)
 {
   behavior.onBehaviorAborted();
 }
 
}
origin: us.ihmc/IHMCHumanoidBehaviors

@Override
public void onBehaviorAborted()
{
 onBehaviorExited();
 this.pipeLine.clearAll();
 for (AbstractBehavior behavior : behaviors)
 {
   behavior.abort();
 }
}
origin: us.ihmc/ihmc-humanoid-behaviors

@Override
public void onBehaviorAborted()
{
 onBehaviorExited();
 this.pipeLine.clearAll();
 for (AbstractBehavior behavior : behaviors)
 {
   behavior.onBehaviorAborted();
 }
}
origin: us.ihmc/ihmc-humanoid-behaviors

@Override
public void onBehaviorAborted()
{
 onBehaviorExited();
 this.pipeLine.clearAll();
 for (AbstractBehavior behavior : behaviors)
 {
   behavior.abort();
 }
}
origin: us.ihmc/ihmc-humanoid-behaviors

private void setupPipeline()
 pipeLine.clearAll();
 BehaviorAction resetRobot = new BehaviorAction(resetRobotBehavior);
origin: us.ihmc/IHMCHumanoidBehaviors

private void setupPipeline()
 pipeLine.clearAll();
 BehaviorAction<TurnValveBehaviorState> resetRobot = new BehaviorAction<TurnValveBehaviorState>(TurnValveBehaviorState.RESET_ROBOT, resetRobotBehavior);
origin: us.ihmc/ihmc-humanoid-behaviors

private void setupPipeline()
{
 publishTextToSpeack("Resetting Robot Pose");
 pipeLine.clearAll();
 //RESET BODY POSITIONS *******************************************
 GoHomeMessage goHomeChestMessage = HumanoidMessageTools.createGoHomeMessage(HumanoidBodyPart.CHEST, 2);
 GoHomeTask goHomeChestTask = new GoHomeTask(goHomeChestMessage, chestGoHomeBehavior);
 GoHomeMessage goHomepelvisMessage = HumanoidMessageTools.createGoHomeMessage(HumanoidBodyPart.PELVIS, 2);
 GoHomeTask goHomePelvisTask = new GoHomeTask(goHomepelvisMessage, pelvisGoHomeBehavior);
 GoHomeMessage goHomeLeftArmMessage = HumanoidMessageTools.createGoHomeMessage(HumanoidBodyPart.ARM, RobotSide.LEFT, 2);
 GoHomeTask goHomeLeftArmTask = new GoHomeTask(goHomeLeftArmMessage, armGoHomeLeftBehavior);
 GoHomeMessage goHomeRightArmMessage = HumanoidMessageTools.createGoHomeMessage(HumanoidBodyPart.ARM, RobotSide.RIGHT, 2);
 GoHomeTask goHomeRightArmTask = new GoHomeTask(goHomeRightArmMessage, armGoHomeRightBehavior);
 pipeLine.requestNewStage();
 if (rightArm)
   pipeLine.submitSingleTaskStage(goHomeRightArmTask);
 if (leftArm)
   pipeLine.submitSingleTaskStage(goHomeLeftArmTask);
 if (chest)
   pipeLine.submitSingleTaskStage(goHomeChestTask);
 if (pelvis)
   pipeLine.submitSingleTaskStage(goHomePelvisTask);
}
origin: us.ihmc/IHMCHumanoidBehaviors

pipeLine.clearAll();
origin: us.ihmc/IHMCHumanoidBehaviors

private void setupPipeline()
{
 TextToSpeechPacket p1 = new TextToSpeechPacket("Resetting Robot Pose");
 sendPacket(p1);
 pipeLine.clearAll();
 //RESET BODY POSITIONS *******************************************
 GoHomeMessage goHomeChestMessage = new GoHomeMessage(BodyPart.CHEST, 2);
 GoHomeTask goHomeChestTask = new GoHomeTask(goHomeChestMessage, chestGoHomeBehavior);
 GoHomeMessage goHomepelvisMessage = new GoHomeMessage(BodyPart.PELVIS, 2);
 GoHomeTask goHomePelvisTask = new GoHomeTask(goHomepelvisMessage, pelvisGoHomeBehavior);
 GoHomeMessage goHomeLeftArmMessage = new GoHomeMessage(BodyPart.ARM, RobotSide.LEFT, 2);
 GoHomeTask goHomeLeftArmTask = new GoHomeTask(goHomeLeftArmMessage, armGoHomeLeftBehavior);
 GoHomeMessage goHomeRightArmMessage = new GoHomeMessage(BodyPart.ARM, RobotSide.RIGHT, 2);
 GoHomeTask goHomeRightArmTask = new GoHomeTask(goHomeRightArmMessage, armGoHomeRightBehavior);
 pipeLine.requestNewStage();
 if (rightArm)
   pipeLine.submitSingleTaskStage(goHomeRightArmTask);
 if (leftArm)
   pipeLine.submitSingleTaskStage(goHomeLeftArmTask);
 if (chest)
   pipeLine.submitSingleTaskStage(goHomeChestTask);
 if (pelvis)
   pipeLine.submitSingleTaskStage(goHomePelvisTask);
}
origin: us.ihmc/IHMCHumanoidBehaviors

private void setupPipeline()
 pipeLine.clearAll();
origin: us.ihmc/ihmc-humanoid-behaviors

private void setupPipeline()
 pipeLine.clearAll();
origin: us.ihmc/ihmc-humanoid-behaviors

private void setUpPipeline()
 pipeLine.clearAll();
 BehaviorAction setStanceTask = new BehaviorAction(footListBehavior)
us.ihmc.tools.taskExecutorPipeLineclearAll

Javadoc

Remove all the stages from the master TaskExecutor.

Popular methods of PipeLine

  • submitSingleTaskStage
    Submit a new single Task stage that will be executed in a new stage.
  • submitTaskForPallelPipesStage
    Submit a new Task to be parallelized. Two possible cases: If the last stage is a single task stage,
  • doControl
  • isDone
  • requestNewStage
    Create a new stage in the master TaskExecutor. Helpful especially when two consecutive stages have p

Popular in Java

  • Creating JSON documents from java classes using gson
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now