io.github.hcoona.utils.AbandonedMutexException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of native-named-mutex Show documentation
Show all versions of native-named-mutex Show documentation
Cross platform named mutex which provide a system-wide
mutex synchronization primitive
The newest version!
package io.github.hcoona.utils;
import com.sun.jna.platform.win32.Win32Exception;
import com.sun.jna.platform.win32.WinBase;
/**
* The exception that is thrown when one thread acquires a Mutex object that another thread has
* abandoned by exiting without releasing it.
*
* Please use {@link io.github.hcoona.concurrent.AbandonedMutexException} instead.
*/
@Deprecated
public class AbandonedMutexException extends Win32Exception {
public AbandonedMutexException() {
super(WinBase.WAIT_ABANDONED);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy