enum
Pulsar::ErrorHandler::Strategy
Defined in:
pulsar/error_handler.crEnum Members
-
Ignore =
0 -
Ignore the error and continue to next subscriber
-
Log =
1 -
Log the error and continue to next subscriber (default)
-
Raise =
2 -
Stop processing and raise the error
-
Custom =
3 -
Call a custom handler
Instance Method Summary
-
#custom?
Returns
trueif this enum value equalsCustom -
#ignore?
Returns
trueif this enum value equalsIgnore -
#log?
Returns
trueif this enum value equalsLog -
#raise?
Returns
trueif this enum value equalsRaise