fix(exhook): change default value to CONTINUE
This commit is contained in:
parent
11352c4eaa
commit
78cdfdf0df
|
@ -237,14 +237,14 @@ message EmptySuccess { }
|
||||||
message ValuedResponse {
|
message ValuedResponse {
|
||||||
|
|
||||||
// The responsed value type
|
// The responsed value type
|
||||||
// - ignore: Ignore the responsed value
|
|
||||||
// - contiune: Use the responsed value and execute the next hook
|
// - contiune: Use the responsed value and execute the next hook
|
||||||
|
// - ignore: Ignore the responsed value
|
||||||
// - stop_and_return: Use the responsed value and stop the chain executing
|
// - stop_and_return: Use the responsed value and stop the chain executing
|
||||||
enum ResponsedType {
|
enum ResponsedType {
|
||||||
|
|
||||||
IGNORE = 0;
|
CONTINUE = 0;
|
||||||
|
|
||||||
CONTINUE = 1;
|
IGNORE = 1;
|
||||||
|
|
||||||
STOP_AND_RETURN = 2;
|
STOP_AND_RETURN = 2;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue