Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public static void main(final String[] args) throws Exception {
String text = "Hello, world from Stomp!";
String message = "SEND\n" +
"destination: exampleQueue\n" +
"destination-type: ANYCAST\n" +
"\n" +
text +
END_OF_FRAME;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public static void main(final String[] args) throws Exception {
// jms.queue.exampleQueue address with a text body
String text = "Hello World from Stomp 1.2 !";
String message = "SEND\n" +
"destination:exampleQueue" +
"destination:exampleQueue\n" +
"destination-type:ANYCAST\n" +
"\n" +
text +
END_OF_FRAME;
Expand Down