public interface CustomContinuableProxy
Proxy
or CGLib Proxy where it's possible to resolve proxy -> handler
dependency via API, custom continuable proxies should provide implementation of this interface to get
corresponding "handler" from the proxied object, in the same manner as Proxy.getInvocationHandler(Object)
.Modifier and Type | Method | Description |
---|---|---|
Object |
getInvocationHandler(String methodName,
String methodDescription) |
Get a real continuable invocation handler for the proxy method descrived via
methodName
and methodDescription . |
Object getInvocationHandler(String methodName, String methodDescription)
methodName
and methodDescription
.methodName
- name of the continuable method that is proxiedmethodDescription
- arguments/return type of the method in internal JVM formatCopyright © 2023. All rights reserved.