All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ak.trafficController.pool.Poolable Maven / Gradle / Ivy

Go to download

This deals with different aspects like In memory queue, throttling, event management etc

There is a newer version: 2.1.0
Show newest version
package org.ak.trafficController.pool;

public interface Poolable {
	default void clean() {};
	default void addBackToPool() {
		ObjectPoolManager.getInstance().addBackToPool(this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy