12 lines
158 B
Java
12 lines
158 B
Java
package com.eactive.eai.common.ibatis;
|
|
|
|
|
|
public interface SqlMapClientRefreshable {
|
|
|
|
void refresh() throws Exception;
|
|
|
|
|
|
void setCheckInterval(int ms);
|
|
|
|
}
|