This commit is contained in:
Redkale
2018-12-18 15:20:13 +08:00
parent 8d9fa8f9cf
commit 0d0bd78213

View File

@@ -75,6 +75,10 @@ public final class ObjectPool<T> implements Supplier<T>, Consumer<T> {
this.creator = creator;
}
public Creator<T> getCreator() {
return this.creator;
}
public Predicate<T> getRecyclerPredicate() {
return recycler;
}