All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.hcoona.utils.AbandonedMutexException Maven / Gradle / Ivy

Go to download

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