SimpleProxy icon indicating copy to clipboard operation
SimpleProxy copied to clipboard

InvocationContext is not thread safe?

Open htzhang2 opened this issue 1 year ago • 0 comments

Two threads both write to InvocationContext in BeforeInvoke method:

  1. Thread1: invocationCopntext.SetTemporaryData("temp", "value1");

  2. Thread2: invocationCopntext.SetTemporaryData("temp", "value2");

This seems corrupt invocationContext.

Is there a thread safe solution?

htzhang2 avatar Sep 22 '22 15:09 htzhang2