Skip to content

Commit

Permalink
Add TCP abstractions to spring-messaging
Browse files Browse the repository at this point in the history
This change adds abstractions for opening and managing TCP connections
primarily for use with the STOMP broker support. As one immediate
benefit the change makes the  StompBrokerRelayMessageHandler more
easy to test.
  • Loading branch information
rstoyanchev committed Oct 18, 2013
1 parent a172b32 commit 29934d7
Show file tree
Hide file tree
Showing 12 changed files with 845 additions and 306 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public MessageDeliveryException(Message<?> undeliveredMessage, String descriptio
super(undeliveredMessage, description);
}

public MessageDeliveryException(Message<?> message, Throwable cause) {
super(message, cause);
}

public MessageDeliveryException(Message<?> undeliveredMessage, String description, Throwable cause) {
super(undeliveredMessage, description, cause);
}
Expand Down
Loading

0 comments on commit 29934d7

Please sign in to comment.