package com.yahoo.ycsb; /** * */ public interface ObjectPoolItemHandler { T create(); void destroy(T object); boolean validate(T object); }