23 lines
522 B
Java
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);
|
|
}
|