Android.OS.Handler.SendMessageAtFrontOfQueue Method
Enqueue a message at the front of the message queue, to be processed on the next iteration of the message loop.

Syntax

[Android.Runtime.Register("sendMessageAtFrontOfQueue", "(Landroid/os/Message;)Z", "")]
public bool SendMessageAtFrontOfQueue (Message msg)

Parameters

msg
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Enqueue a message at the front of the message queue, to be processed on the next iteration of the message loop. You will receive it in Handler.HandleMessage(Message), in the thread attached to this handler. This method is only for use in very special circumstances -- it can easily starve the message queue, cause ordering problems, or have other unexpected side-effects.

[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