I have a scenario where I want each user to have its own session ID, this session ID will be stored with certain parameters that affect the user's request.
what would be the best way to achieve this ?
I want o hold a session id that is available throughout the flow
I saw that there is a @Session decorator but I want it to be available in every function in the flow, so what should I do ?
One option that is that I can propagate it on every function call, but I want something elegant