Class Timer
Definition
- Assembly:
- Tizen.NUI.dll
Mechanism to issue simple periodic or one-shot events.
Timer is provided for application developers to be able to issue
simple periodic or one-shot events. Please note that the timer
callback functions should return as soon as possible because they
block the next SignalTick. Please note that timer signals are not
in sync with DALi's render timer.
This class is a handle class so it can be stack allocated and used
as a member.
public class Timer : BaseHandle, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceTimer(uint)
Creates a tick timer that emits periodic signal.
Declaration
public Timer(uint milliSec)
Parameters
Type | Name | Description |
---|---|---|
uint | milliSec | Interval in milliseconds. |
Properties
View SourceInterval
Gets/Sets the interval of the timer.
Declaration
public uint Interval { get; set; }
Property Value
Type | Description |
---|---|
uint |
Remarks
For setter, this sets a new interval on the timer and starts the timer.
Cancels the previous timer.
Methods
View SourceDispose(DisposeTypes)
Dispose.
Declaration
protected override void Dispose(DisposeTypes type)
Parameters
Type | Name | Description |
---|---|---|
DisposeTypes | type |
Overrides
View Source~Timer()
Declaration
protected ~Timer()
IsRunning()
Tells whether the timer is running.
Declaration
public bool IsRunning()
Returns
Type | Description |
---|---|
bool | Whether the timer is started or not. |
Start()
Starts the timer.
In case a timer is already running, its time is reset and the timer is restarted.
Declaration
public void Start()
Stop()
Stops the timer.
Declaration
public void Stop()
Events
View SourceTick
@brief Event for the ticked signal, which can be used to subscribe or unsubscribe the event handler
provided by the user. The ticked signal is emitted after specified time interval.
Declaration
public event EventHandlerWithReturnType<object, Timer.TickEventArgs, bool> Tick
Event Type
Type | Description |
---|---|
EventHandlerWithReturnType<object, Timer.TickEventArgs, bool> |