Interface Recycler.C<T>
- All Known Implementing Classes:
AbstractRecyclerC
public static interface Recycler.C<T>
-
Method Summary
-
Method Details
-
newInstance
T newInstance()Create a new empty instance of the given size. -
recycle
Recycle the data. This operation is called when the data structure is released. -
destroy
Destroy the data. This operation allows the data structure to release any internal resources before GC.
-