Home Previous Up Next Index

armarx::SystemObserverInterface

Overview

[ "amd" ] interface SystemObserverInterface extends ObserverInterface

Operation Index

startTimer
resetTimer
pauseTimer
unpauseTimer
removeTimer
startCounter
incrementCounter
decrementCounter
resetCounter
setCounter
removeCounter

Operations

ChannelRefBase startTimer(string timerName) throws InvalidTimerException

void resetTimer(ChannelRefBase timer) throws InvalidTimerException

void pauseTimer(ChannelRefBase timer) throws InvalidTimerException

void unpauseTimer(ChannelRefBase timer) throws InvalidTimerException

void removeTimer(ChannelRefBase timer)

ChannelRefBase startCounter(int initialValue, string counterName) throws InvalidCounterException

int incrementCounter(ChannelRefBase counter) throws InvalidCounterException

int decrementCounter(ChannelRefBase counter) throws InvalidCounterException

void resetCounter(ChannelRefBase counter) throws InvalidCounterException

void setCounter(ChannelRefBase counter, int counterValue) throws InvalidCounterException

void removeCounter(ChannelRefBase counter)


Home Previous Up Next Index