Actionlib functions

ROS.actionlib.acceptNewGoalMethod
acceptNewGoal(action_server)

Accepts a new goal when one is available. The status of this goal is set to active upon acceptance, and the status of any previously active goal is set to preempted. Preempts received for the new goal between checking if isNewGoalAvailable or invocation of a goal callback and the acceptNewGoal call will not trigger a preempt callback. This means, isPreemptRequested should be called after accepting the goal even for callback-based implementations to make sure the new goal does not have a pending preempt request.

source
ROS.actionlib.sendGoalAndWaitMethod
sendGoalAndWait(action_client, goal, ex_timeout, pr_timeout)

Sends a goal to the ActionServer, and waits until the goal completes or a timeout is exceeded.

source
ROS.actionlib.startMethod
start(action_server)

Explicitly start the action server, used it auto_start is set to false.

source