Java.Util.Timer Members

The members of Java.Util.Timer are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Creates a new non-daemon Timer.
Creates a new Timer which may be specified to be run as a daemon thread.
Creates a new named Timer which does not run as a daemon thread.
Creates a new named Timer which may be specified to be run as a daemon thread.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

Cancel()
Cancels the Timer and all scheduled tasks.
Purge() : int
Removes all canceled tasks from the task queue.
Schedule(TimerTask, Date)
Schedule a task for single execution.
Schedule(TimerTask, long)
Schedule a task for single execution after a specified delay.
Schedule(TimerTask, Date, long)
Schedule a task for repeated fixed-delay execution after a specific time has been reached.
Schedule(TimerTask, long, long)
Schedule a task for repeated fixed-delay execution after a specific delay.
ScheduleAtFixedRate(TimerTask, Date, long)
Schedule a task for repeated fixed-rate execution after a specific time has been reached.
ScheduleAtFixedRate(TimerTask, long, long)
Schedule a task for repeated fixed-rate execution after a specific delay has passed.