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
true
if this enum value equalsCustom
-
#ignore?
Returns
true
if this enum value equalsIgnore
-
#log?
Returns
true
if this enum value equalsLog
-
#raise?
Returns
true
if this enum value equalsRaise