Handler.SendEmptyMessageAtTime(Int32, Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends a Message containing only the what value, to be delivered at a specific time.
[Android.Runtime.Register("sendEmptyMessageAtTime", "(IJ)Z", "")]
public bool SendEmptyMessageAtTime (int what, long uptimeMillis);
[<Android.Runtime.Register("sendEmptyMessageAtTime", "(IJ)Z", "")>]
member this.SendEmptyMessageAtTime : int * int64 -> bool
Parameters
- what
- Int32
- uptimeMillis
- Int64
Returns
Returns true if the message was successfully placed in to the message queue. Returns false on failure, usually because the looper processing the message queue is exiting.
- Attributes
Remarks
Sends a Message containing only the what value, to be delivered at a specific time.
Java documentation for android.os.Handler.sendEmptyMessageAtTime(int, long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
See also
- <xref:Android.OS.Handler.SendMessageAtTime(Android.OS.Message%2c+System.Int64)>