Here you can find the source of sleepInterruptible(long timeMillis)
public static void sleepInterruptible(long timeMillis)
//package com.java2s; public class Main { public static void sleepInterruptible(long timeMillis) { try {//from w w w . j a v a 2 s . c o m Thread.sleep(timeMillis); } catch (InterruptedException e) { } } }