IAsyncInvocationHandler.cs 135 B

12345678
  1. namespace Blue
  2. {
  3. public interface IAsyncInvocationHandler<T>
  4. {
  5. void TriggerFailed();
  6. void TriggerSucceed(T result);
  7. }
  8. }