mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
HHH-12966 Make CacheableDataStatistics serializable
This is necessary to access statistics over JMX.
This commit is contained in:
parent
83191633ec
commit
8293d6dce3
@ -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;
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user