colesico.framework.rpc.clientapi.RpcRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-rpc Show documentation
Show all versions of colesico-rpc Show documentation
Colesico framework Remote Procedure Call for Services
The newest version!
package colesico.framework.rpc.clientapi;
/**
* RPC request handler called before request been sent.
* Can be used to enrich request with custom values (security principal, profile, tracing id, e.t.c.)
*/
public interface RpcRequestHandler {
void onRequest(Q request);
}