DEV Community

Discussion on: Service Fabric Remoting: Interception & Custom Headers

Collapse
 
justinkaffenberger profile image
JustinKaffenberger

This is great, as it opens up some opportunities to extend the functionality of a given service without having to necessarily update the contract. Could also add some opportunities for a more 'aspect-oriented' approach to adding general purpose functionality around services without cluttering the service contract. Obviously overuse of that as a technique would make the code quite ugly, but everything in moderation 👍

Collapse
 
expecho profile image
Peter Bons

Yeah I mainly used it for tracing purposes. I wouldn't use it to pass all kind of information to services instead of using proper variables for instance.