gtsoft-snail-job-demo/src/main/java/com/example/easy/retry/service/LocalRemoteService.java
2024-03-03 12:42:04 +08:00

23 lines
524 B
Java

package com.example.easy.retry.service;
/**
* @author: www.byteblogs.com
* @date : 2023-09-06 09:02
*/
public interface LocalRemoteService {
void localRemote();
String remoteRetryWithLocalRemote(String requestId);
boolean localRetryWithPropagationRequired(String params);
boolean localRetryWithPropagationRequiredNew(String params);
boolean localRetryWithTryCatch1(String params);
boolean localRetryWithTryCatch2(String params);
boolean localRetryWithTwoRetryMethod(String params);
}