智能工厂.apk(点击下载) / b.java


package cn.jiguang.y;

import android.content.ComponentName;
import android.content.ServiceConnection;
import android.os.IBinder;
import java.util.concurrent.LinkedBlockingQueue;

public class b implements ServiceConnection {
    public boolean a;
    public final LinkedBlockingQueue<IBinder> b = new LinkedBlockingQueue<>(1);

    public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
        try {
            this.b.put(iBinder);
        } catch (Throwable th) {
            th.printStackTrace();
        }
    }

    public void onServiceDisconnected(ComponentName componentName) {
    }
}