Process.StartRequestedUptimeMillis Property
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.
Return the SystemClock#uptimeMillis()
at which the system was about to
start this process.
public static long StartRequestedUptimeMillis { [Android.Runtime.Register("getStartRequestedUptimeMillis", "()J", "", ApiSince=33)] get; }
[<get: Android.Runtime.Register("getStartRequestedUptimeMillis", "()J", "", ApiSince=33)>]
static member StartRequestedUptimeMillis : int64
Property Value
- Attributes
Remarks
Return the SystemClock#uptimeMillis()
at which the system was about to start this process. i.e. before a zygote fork.
More precisely, the system may start app processes before there's a start request, in order to reduce the process start up latency, in which case this is set when the system decides to "specialize" the process into a requested app.
Java documentation for android.os.Process.getStartRequestedUptimeMillis()
.
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.