Here you can find the source of sleep4Subscription()
public static void sleep4Subscription()
//package com.java2s; //License from project: Apache License public class Main { public static void sleep4Subscription() { try {//from ww w . j a v a2 s . c o m Thread.currentThread().sleep(1000l); } catch (Exception ignore) { } } }