@Target(value=METHOD)
@Retention(value=RUNTIME)
@Documented
public @interface Initialize
The annotated method handles the initialize JSON-RPC method,
which is called when a client first connects to negotiate capabilities.
The method can have the following parameters (all optional):
InitializeRequest - the initialization requestThe method should return one of:
InitializeResponse - the initialization responseMono<InitializeResponse> - for async handlingExample usage:
{@codeAcpAgent