This commit is contained in:
Rinjae
2025-09-05 18:57:45 +09:00
commit aacc1a389e
1229 changed files with 167963 additions and 0 deletions
@@ -0,0 +1,15 @@
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;
}