WorkDuration.WorkPeriodStartTimestampNanos 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.
Returns the work period start timestamp based in nanoseconds. -or- Sets the work period start timestamp in nanoseconds.
public long WorkPeriodStartTimestampNanos { [Android.Runtime.Register("getWorkPeriodStartTimestampNanos", "()J", "", ApiSince=35)] get; [Android.Runtime.Register("setWorkPeriodStartTimestampNanos", "(J)V", "", ApiSince=35)] set; }
[<get: Android.Runtime.Register("getWorkPeriodStartTimestampNanos", "()J", "", ApiSince=35)>]
[<set: Android.Runtime.Register("setWorkPeriodStartTimestampNanos", "(J)V", "", ApiSince=35)>]
member this.WorkPeriodStartTimestampNanos : int64 with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
Returns the work period start timestamp based in nanoseconds.
All timings should be in SystemClock#uptimeNanos()
.
Java documentation for android.os.WorkDuration.getWorkPeriodStartTimestampNanos()
.
Property setter documentation:
Sets the work period start timestamp in nanoseconds.
All timings should be in SystemClock#uptimeNanos()
.
Java documentation for android.os.WorkDuration.setWorkPeriodStartTimestampNanos(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.