Android.OS.Handler.SendMessageAtTime Method
Enqueue a message into the message queue after all pending messages before the absolute time (in milliseconds) uptimeMillis.

Syntax

[Android.Runtime.Register("sendMessageAtTime", "(Landroid/os/Message;J)Z", "GetSendMessageAtTime_Landroid_os_Message_JHandler")]
public virtual bool SendMessageAtTime (Message msg, long uptimeMillis)

Parameters

msg
Documentation for this section has not yet been entered.
uptimeMillis
The absolute time at which the message should be delivered, using the SystemClock.UptimeMillis time-base.

Returns

Documentation for this section has not yet been entered.

Remarks

Enqueue a message into the message queue after all pending messages before the absolute time (in milliseconds) uptimeMillis. The time-base is SystemClock.UptimeMillis. Time spent in deep sleep will add an additional delay to execution. You will receive it in Handler.HandleMessage(Message), in the thread attached to this handler.

[Android Documentation]

Requirements

Namespace: Android.OS
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1