com.microsoft.azure.iothub.ObjectLock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iothub-java-device-client Show documentation
Show all versions of iothub-java-device-client Show documentation
The Microsoft Azure IoT Device SDK for Java
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