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
Currently function callbacks are passed directly over the interface as arguments.
This leads to 2 issues:
We cannot journal calls into these callbacks from within the implementation - which we would like to do in the future
This does not follow the hourglass isolation pattern as an exception thown in the callback might not be safely able to percolate in the implementations code.
To get around this we should wrap the function call backs we are passed from the binding in the implementation.
The text was updated successfully, but these errors were encountered:
Currently function callbacks are passed directly over the interface as arguments.
This leads to 2 issues:
To get around this we should wrap the function call backs we are passed from the binding in the implementation.
The text was updated successfully, but these errors were encountered: