MappedByteBuffer.IsLoaded Property

Definition

Tells whether or not this buffer's content is resident in physical memory.

public bool IsLoaded { [Android.Runtime.Register("isLoaded", "()Z", "")] get; }
[<get: Android.Runtime.Register("isLoaded", "()Z", "")>]
member this.IsLoaded : bool

Property Value

true if it is likely that this buffer's content is resident in physical memory

Attributes

Remarks

Tells whether or not this buffer's content is resident in physical memory.

A return value of true implies that it is highly likely that all of the data in this buffer is resident in physical memory and may therefore be accessed without incurring any virtual-memory page faults or I/O operations. A return value of false does not necessarily imply that the buffer's content is not resident in physical memory.

The returned value is a hint, rather than a guarantee, because the underlying operating system may have paged out some of the buffer's data by the time that an invocation of this method returns.

Java documentation for java.nio.MappedByteBuffer.isLoaded().

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