HHH-12966 Make CacheableDataStatistics serializable

This is necessary to access statistics over JMX.
This commit is contained in:
del65 2018-08-31 15:50:27 +02:00 committed by Guillaume Smet
parent 83191633ec
commit 8293d6dce3
1 changed files with 3 additions and 1 deletions

View File

@ -6,10 +6,12 @@
*/
package org.hibernate.stat;
import java.io.Serializable;
/**
* @author Steve Ebersole
*/
public interface CacheableDataStatistics {
public interface CacheableDataStatistics extends Serializable {
long NOT_CACHED_COUNT = Long.MIN_VALUE;
/**