Companion

object Companion

Properties

Link copied to clipboard
const val ACQUIRE_EXCLUSIVE_ACCESS_BUSY: Int = 1

Possible result of acquireExclusiveAccess or acquireWholeMapExclusiveAccess, signalling that exclusive access can't be granted because another component already has it.

Link copied to clipboard
const val ACQUIRE_EXCLUSIVE_ACCESS_OK: Int

Possible result of acquireExclusiveAccess or acquireWholeMapExclusiveAccess, signalling success.

Link copied to clipboard
const val ACQUIRE_EXCLUSIVE_ACCESS_TIMEOUT: Int = 2

Possible result of acquireExclusiveAccess or acquireWholeMapExclusiveAccess, signalling that acquiring exclusive access failed because the time expired and one or more components didn't release their shared access.

const val ACQUIRE_EXCLUSIVE_ACCESS_UNEXPECTED_ERROR: Int = 0

Possible result of acquireExclusiveAccess or acquireWholeMapExclusiveAccess, signalling that an unexpected error has happened.

Link copied to clipboard
const val SHARED_ACCESS_GRANTED: Boolean = true

Possible result of acquireSharedAccess. Be careful to keep this aligned with the values on the JNI side.

Link copied to clipboard
const val SHARED_ACCESS_NOT_GRANTED: Boolean = false

Possible result of acquireSharedAccess. Be careful to keep this aligned with the values on the JNI side.