Interface GcsLockListener
-
public interface GcsLockListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidacquireLockException(Exception exception)Callback for when exception has been encountered during lock acquisitionvoidcleanupDeadLockException(Exception exception)Callback for when exception has been encountered while cleaning up the expired lockvoidkeepLockAliveException(Exception exception)Callback for when exception has been encountered while keeping the lock alivevoidreleaseLockException(Exception exception)Callback for when exception has been encountered during lock release
-
-
-
Method Detail
-
acquireLockException
void acquireLockException(Exception exception)
Callback for when exception has been encountered during lock acquisition- Parameters:
exception- : The exception encountered during lock acquisition
-
releaseLockException
void releaseLockException(Exception exception)
Callback for when exception has been encountered during lock release- Parameters:
exception- : The exception encountered during lock release
-
keepLockAliveException
void keepLockAliveException(Exception exception)
Callback for when exception has been encountered while keeping the lock alive- Parameters:
exception- : The exception encountered while keeping the lock alive
-
cleanupDeadLockException
void cleanupDeadLockException(Exception exception)
Callback for when exception has been encountered while cleaning up the expired lock- Parameters:
exception- : The exception encountered while cleaning up the expired lock
-
-