Uses of Enum Class
com.scaleoutsoftware.digitaltwin.abstractions.TimerType
Packages that use TimerType
Package
Description
Digital twin model API - Create a digital twin model.
-
Uses of TimerType in com.scaleoutsoftware.digitaltwin.abstractions
Methods in com.scaleoutsoftware.digitaltwin.abstractions that return TimerTypeModifier and TypeMethodDescriptionTimerMetadata.getTimerType()Retrieves the timer type.static TimerTypeReturns the enum constant of this class with the specified name.static TimerType[]TimerType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.scaleoutsoftware.digitaltwin.abstractions with parameters of type TimerTypeModifier and TypeMethodDescriptionabstract TimerActionResultInitContext.startTimer(String timerName, Duration interval, TimerType timerType, TimerHandler<T> timerHandler, Class<? extends TimerHandler<T>> timerHandlerClass) Starts a new timer for the digital twinabstract TimerActionResultProcessingContext.startTimer(String timerName, Duration interval, TimerType timerType, TimerHandler<T> timerHandler, Class<? extends TimerHandler<T>> timerHandlerClass) Starts a new timer for the digital twinConstructors in com.scaleoutsoftware.digitaltwin.abstractions with parameters of type TimerTypeModifierConstructorDescriptionTimerMetadata(TimerHandler<T> handlerClass, TimerType timerType, long timerIntervalMs, int timerSlot) Constructs a timer metadata.