You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to add features such as logging and tracing, it would be nice if h4bff supported interceptors for the locator.
Motivation:
Lets say you would like to implement an XRay tracer that will give you a listing of all the service method calls for a request. You've made a tracing proxy that wraps a service method calls with the right xray xray logging calls. How to apply it to all service instances?
This would wrap all services annotated with a "traced" property (or those explicitly added to the "TracedClasses" map) with a tracing proxy. Its sort of like a middleware system, but not to be confused with middleware - MW pertains to individual client requests (one per service context) while interceptors are for each service instantiation.
The text was updated successfully, but these errors were encountered:
In order to add features such as logging and tracing, it would be nice if h4bff supported interceptors for the locator.
Motivation:
Lets say you would like to implement an XRay tracer that will give you a listing of all the service method calls for a request. You've made a tracing proxy that wraps a service method calls with the right xray xray logging calls. How to apply it to all service instances?
Sketch API / motivation
This would wrap all services annotated with a "traced" property (or those explicitly added to the "TracedClasses" map) with a tracing proxy. Its sort of like a middleware system, but not to be confused with middleware - MW pertains to individual client requests (one per service context) while interceptors are for each service instantiation.
The text was updated successfully, but these errors were encountered: