增加SncpClientRequest

This commit is contained in:
redkale
2023-02-02 13:47:34 +08:00
parent ea9505c2da
commit cfc20c6248
23 changed files with 1282 additions and 766 deletions

View File

@@ -120,7 +120,7 @@ public class SncpTestServiceImpl implements SncpTestIService {
System.out.println(method);
}
System.out.println("-----------------------------------");
for (Method method : SncpClient.parseMethodActions(service.getClass()).values()) {
for (Method method : SncpOldClient.parseMethodActions(service.getClass()).values()) {
System.out.println(method);
}
System.out.println("-----------------------------------");
@@ -129,7 +129,7 @@ public class SncpTestServiceImpl implements SncpTestIService {
System.out.println(method);
}
System.out.println("-----------------------------------");
for (Method method : SncpClient.parseMethodActions(service.getClass()).values()) {
for (Method method : SncpOldClient.parseMethodActions(service.getClass()).values()) {
System.out.println(method);
}
System.out.println("-----------------------------------");
@@ -138,7 +138,7 @@ public class SncpTestServiceImpl implements SncpTestIService {
System.out.println(method);
}
System.out.println("-----------------------------------");
for (Method method : SncpClient.parseMethodActions(service.getClass()).values()) {
for (Method method : SncpOldClient.parseMethodActions(service.getClass()).values()) {
System.out.println(method);
}
System.out.println("-----------------------------------");

View File

@@ -15,6 +15,6 @@ import org.redkale.annotation.ResourceType;
@ResourceType(SncpTestIService.class)
public class _DynLocalSncpTestService extends SncpTestServiceImpl {
private SncpClient _redkale_client;
private SncpOldClient _redkale_client;
}