Uses of Interface
net.engio.mbassy.bus.error.IPublicationErrorHandler
-
Packages that use IPublicationErrorHandler Package Description net.engio.mbassy.bus net.engio.mbassy.bus.common net.engio.mbassy.bus.config net.engio.mbassy.bus.error net.engio.mbassy.subscription -
-
Uses of IPublicationErrorHandler in net.engio.mbassy.bus
Fields in net.engio.mbassy.bus with type parameters of type IPublicationErrorHandler Modifier and Type Field Description private java.util.List<IPublicationErrorHandler>
AbstractPubSubSupport. errorHandlers
Methods in net.engio.mbassy.bus that return types with arguments of type IPublicationErrorHandler Modifier and Type Method Description java.util.Collection<IPublicationErrorHandler>
AbstractPubSubSupport. getRegisteredErrorHandlers()
Constructors in net.engio.mbassy.bus with parameters of type IPublicationErrorHandler Constructor Description MBassador(IPublicationErrorHandler errorHandler)
Construct with default settings and specified publication error handlerSyncMessageBus(IPublicationErrorHandler errorHandler)
Construct with default settings and specified publication error handler -
Uses of IPublicationErrorHandler in net.engio.mbassy.bus.common
Methods in net.engio.mbassy.bus.common that return types with arguments of type IPublicationErrorHandler Modifier and Type Method Description java.util.Collection<IPublicationErrorHandler>
ErrorHandlingSupport. getRegisteredErrorHandlers()
Get all registered instance ofIPublicationErrorHandler
-
Uses of IPublicationErrorHandler in net.engio.mbassy.bus.config
Fields in net.engio.mbassy.bus.config with type parameters of type IPublicationErrorHandler Modifier and Type Field Description private java.util.List<IPublicationErrorHandler>
BusConfiguration. publicationErrorHandlers
Methods in net.engio.mbassy.bus.config that return types with arguments of type IPublicationErrorHandler Modifier and Type Method Description java.util.Collection<IPublicationErrorHandler>
BusConfiguration. getRegisteredPublicationErrorHandlers()
java.util.Collection<IPublicationErrorHandler>
IBusConfiguration. getRegisteredPublicationErrorHandlers()
Get an unmodifiable collection of all registered publication error handlersMethods in net.engio.mbassy.bus.config with parameters of type IPublicationErrorHandler Modifier and Type Method Description BusConfiguration
BusConfiguration. addPublicationErrorHandler(IPublicationErrorHandler handler)
BusConfiguration
IBusConfiguration. addPublicationErrorHandler(IPublicationErrorHandler handler)
Add a handler that will be called whenever a publication error occurs. -
Uses of IPublicationErrorHandler in net.engio.mbassy.bus.error
Classes in net.engio.mbassy.bus.error that implement IPublicationErrorHandler Modifier and Type Class Description static class
IPublicationErrorHandler.ConsoleLogger
The default error handler will simply log to standard out and print the stack trace if available. -
Uses of IPublicationErrorHandler in net.engio.mbassy.subscription
Fields in net.engio.mbassy.subscription with type parameters of type IPublicationErrorHandler Modifier and Type Field Description private java.util.Collection<IPublicationErrorHandler>
SubscriptionContext. errorHandlers
Methods in net.engio.mbassy.subscription that return types with arguments of type IPublicationErrorHandler Modifier and Type Method Description java.util.Collection<IPublicationErrorHandler>
SubscriptionContext. getErrorHandlers()
Get the error handlers registered with the enclosing bus.Constructor parameters in net.engio.mbassy.subscription with type arguments of type IPublicationErrorHandler Constructor Description SubscriptionContext(BusRuntime runtime, MessageHandler handler, java.util.Collection<IPublicationErrorHandler> errorHandlers)
-