We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public event Func<object, CancelSucceedEventArgs, bool> CancelSucceed; public event Func<object, RefundSucceedEventArgs, bool> RefundSucceed; public event Func<object, UnKnownNotifyEventArgs, bool> UnknownNotify; public event Action<object, UnknownGatewayEventArgs> UnknownGateway;
改成
public event Func<object, CancelSucceedEventArgs, Task<bool>> CancelSucceed; public event Func<object, RefundSucceedEventArgs, Task<bool>> RefundSucceed; public event Func<object, UnKnownNotifyEventArgs, Task<bool>> UnknownNotify; public event Func<object, UnknownGatewayEventArgs, Task> UnknownGateway;
The text was updated successfully, but these errors were encountered:
后续可以考虑增加异步返回
Sorry, something went wrong.
No branches or pull requests
改成
The text was updated successfully, but these errors were encountered: