Files
elink-online-common/src/main/java/com/eactive/eai/common/testcall/TestCall.java
T
Rinjae aacc1a389e init
2025-09-05 18:57:45 +09:00

16 lines
500 B
Java

package com.eactive.eai.common.testcall;
import com.eactive.eai.adapter.AdapterVO;
/*
* TestCallRunner가 일정 주기로 TestCall의 isAlive() 메서드를 실행하여 결과가 true일 경우 해당 어댑터의 상태를 true로 변경한다.
* Recovery 통신 테스트 로직을 isAlive() 메서드에 구현한다.
*/
public interface TestCall {
public AdapterVO getAdapterInfo();
public void setAdapterInfo(AdapterVO adapterInfo);
public boolean isAlive() throws TestCallException;
}