Examples of updateState()


Examples of appeng.api.networking.IGridNode.updateState()

        foundConnection |= validConnections.contains(dir);
        if(node == null) {
          node = ((IGridHost) te).getGridNode(dir.getOpposite());
        }
        if(node != null) {
          node.updateState();
        }
      }
    }
    if(!foundConnection && hasNode()) {
      getNode().destroy();
View Full Code Here

Examples of com.linkedin.helix.participant.statemachine.StateModel.updateState()

        for (String resourceKey : modelMap.keySet())
        {
          StateModel stateModel = modelMap.get(resourceKey);
          stateModel.reset();
          String initialState = _stateModelParser.getInitialState(stateModel.getClass());
          stateModel.updateState(initialState);
          // TODO probably should update the state on ZK. Shi confirm what needs
          // to be done here.
        }
      }
    }
View Full Code Here

Examples of com.sun.messaging.jmq.jmsserver.data.TransactionList.updateState()

                                    continue;
                                }
                                myts = translist.retrieveState(tid);
                                if (myts == null) continue;
                                myts = new TransactionState(myts);
                                translist.updateState(tid,
                                  myts.nextState(PacketType.ROLLBACK_TRANSACTION, null),
                                  myts.getState(), true);
                                logger.log(logger.INFO,
                                "Remote transaction "+tid+"("+
                                 TransactionState.toString(ts.getState())+
View Full Code Here

Examples of components.robot.Robot.updateState()

        robot.setStatus( Defines.STATE_ROBOT_CALIBRATED );
       
        // Se fuerza la actualizaci�n de estado
        try
        {
          robot.updateState();
        }
        catch (RobotException e)
        {
          // Se restaura el color previo
          if ( prevColor != null )
View Full Code Here

Examples of components.robot.Robot.updateState()

        robot.setStatus( Defines.STATE_ROBOT_CALIBRATED );
       
        // Se fuerza la actualizaci�n de estado
        try
        {
          robot.updateState();
        }
        catch (RobotException e)
        {
          // Se restaura el color previo
          if ( prevColor != null )
View Full Code Here

Examples of net.sourceforge.jaad.aac.tools.LTPrediction.updateState()

    processDependentCoupling(false, elementID, CCE.AFTER_TNS, iqData, null);

    //filterbank
    filterBank.process(info.getWindowSequence(), info.getWindowShape(ICSInfo.CURRENT), info.getWindowShape(ICSInfo.PREVIOUS), iqData, data[channel], channel);

    if(LTPrediction.isLTPProfile(profile)) ltp.updateState(data[channel], filterBank.getOverlap(channel), profile);

    //dependent coupling
    processIndependentCoupling(false, elementID, data[channel], null);

    //gain control
View Full Code Here

Examples of org.apache.axis2.cluster.context.ContextManager.updateState()

        //Calling the ClusterManager probably to replicate the updated state of the context.
        if (clusterManager != null) {
          ContextManager contextManager = clusterManager.getContextManager();
          if (contextManager!=null && contextManager.isContextClusterable (this))
            contextManager.updateState(this);
        }

        //Other logic needed for flushing the contexts
    }
View Full Code Here

Examples of org.apache.flink.runtime.executiongraph.ExecutionGraph.updateState()

            " to change state to " + executionState.getExecutionState());
      }
      return false;
    }

    return eg.updateState(executionState);
  }
 
  @Override
  public InputSplit requestNextInputSplit(JobID jobID, JobVertexID vertexId, ExecutionAttemptID executionAttempt) throws IOException {
View Full Code Here

Examples of org.apache.geronimo.concurrent.thread.ManagedThread.updateState()

        assertFalse(thread.isTaskHung());
       
        thread.start();
       
        Thread.sleep(1000 * 10);
        thread.updateState();
       
        assertTrue(thread.isTaskHung());
       
        assertTrue(thread.cancelTask());
       
View Full Code Here

Examples of org.apache.helix.api.TransitionHandler.updateState()

      for (StateTransitionHandlerFactory<? extends TransitionHandler> stateModelFactory : ftyMap.values()) {
        for (PartitionId partition : stateModelFactory.getPartitionSet()) {
          TransitionHandler stateModel = stateModelFactory.getTransitionHandler(partition);
          stateModel.reset();
          String initialState = _stateModelParser.getInitialState(stateModel.getClass());
          stateModel.updateState(initialState);
          // TODO probably should update the state on ZK. Shi confirm what needs
          // to be done here.
        }
      }
    }
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.