io.activej.common.recycle.Recycler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-common Show documentation
Show all versions of activej-common Show documentation
Various general utilities for ActiveJ project.
package io.activej.common.recycle;
public interface Recycler {
void recycle(T item);
}