JVM 崩溃时 FileLock 会发生什么?
what happens with FileLock on JVM crash?
我只是想知道如果 JVM 严重崩溃或收到 SIGKILL,来自 FileLock 的锁会发生什么情况。
FileLock doc 中没有任何关于它的说明,所以我认为它已发布。
只是想确定一下...
感谢
大概与任何其他崩溃的程序相同,这取决于平台。正如 api doc 所述,FileLock 仅使用您 运行 在以下平台上可用的本机锁定机制:
This file-locking API is intended to map directly to the native
locking facility of the underlying operating system.
另请参阅 this answer 类似问题。
我只是想知道如果 JVM 严重崩溃或收到 SIGKILL,来自 FileLock 的锁会发生什么情况。
FileLock doc 中没有任何关于它的说明,所以我认为它已发布。 只是想确定一下...
感谢
大概与任何其他崩溃的程序相同,这取决于平台。正如 api doc 所述,FileLock 仅使用您 运行 在以下平台上可用的本机锁定机制:
This file-locking API is intended to map directly to the native locking facility of the underlying operating system.
另请参阅 this answer 类似问题。