gtsoft-snail-job-demo/src/main/java/com/example/easy/retry/service/LocalRemoteService.java
2024-02-05 15:58:14 +08:00

13 lines
231 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);
}