Factored out MessageRetriever and MessageDispatcher strategies.

This commit is contained in:
Mark Fisher
2007-12-25 23:20:00 +00:00
parent 2b26ac53f5
commit ffc6955841
9 changed files with 302 additions and 57 deletions

View File

@@ -39,6 +39,7 @@ public class MessageEndpointAnnotationPostProcessorTests {
inputChannel.send(new GenericMessage<String>(1, "world"));
Message<String> message = outputChannel.receive();
assertEquals("hello world", message.getPayload());
context.stop();
}
}