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

com.microsoft.azure.iothub.ObjectLock Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.microsoft.azure.iothub;

/** This class enables mocking of the base class wait and notify functions
*/
public class ObjectLock
{
    public void waitLock(long timeout) throws InterruptedException
    {
        this.wait(timeout);
    }

    public void notifyLock()
    {
        this.notify();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy