IMsg.java 212 Bytes
package com.ys.yslibrary.control;

public interface IMsg {
    public void postDelayed(Runnable runnable, long delayTime);
    public void removeCallbacks(Runnable runnable);
    public void removeCallbacks();
}