gtsoft-snail-job-demo/src/main/java/com/example/snailjob/service/LocalRemoteService.java
2024-04-16 15:03:52 +08:00

23 lines
522 B
Java

package com.example.snailjob.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);
}