-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Just one tip about error handling, if you dispatch the request like this:
if (exchange.isInIoThread()) {
exchange.dispatch(this);
return;
}
You are not able to handle the error by using the outer handler, one simple workaround is:
if (exchange.isInIoThread()) {
exchange.dispatch(new ErrorHandler(this));
return;
}
Metadata
Metadata
Assignees
Labels
No labels