com.terminaldriver.tn5250j.util.Wait Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of terminaldriver-tn5250j Show documentation
Show all versions of terminaldriver-tn5250j Show documentation
terminal driver for 5250 telnet
package com.terminaldriver.tn5250j.util;
public class Wait {
public static void sleep(final long millis) {
try {
Thread.sleep(millis);
} catch (final InterruptedException e) {
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy