com.bumptech.glide.load.engine.ResourceRecycler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glide Show documentation
Show all versions of glide Show documentation
A fast and efficient image loading library for Android focused on smooth scrolling.
package com.bumptech.glide.load.engine;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import com.bumptech.glide.util.Synthetic;
/** A class that can safely recycle recursive resources. */
class ResourceRecycler {
private boolean isRecycling;
private final Handler handler =
new Handler(Looper.getMainLooper(), new ResourceRecyclerCallback());
synchronized void recycle(Resource> resource, boolean forceNextFrame) {
if (isRecycling || forceNextFrame) {
// If a resource has sub-resources, releasing a sub resource can cause it's parent to be
// synchronously evicted which leads to a recycle loop when the parent releases it's children.
// Posting breaks this loop.
handler.obtainMessage(ResourceRecyclerCallback.RECYCLE_RESOURCE, resource).sendToTarget();
} else {
isRecycling = true;
resource.recycle();
isRecycling = false;
}
}
private static final class ResourceRecyclerCallback implements Handler.Callback {
static final int RECYCLE_RESOURCE = 1;
@Synthetic
ResourceRecyclerCallback() {}
@Override
public boolean handleMessage(Message message) {
if (message.what == RECYCLE_RESOURCE) {
Resource> resource = (Resource>) message.obj;
resource.recycle();
return true;
}
return false;
}
}
}