Add Ordered interface to all event listeneres

changes requested by cppwfs

Fix Constructors duplication

Add @author

Some cleanup on chunk listener

Updated chunk listener to send message before and after chunk.
Fixed Links for JavaDocs to prevent failure on javadoc build.
Updated tests to support new chunk messages.
This commit is contained in:
Ali Shahbour
2017-03-06 17:06:51 +02:00
committed by Glenn Renfro
parent fc708ac775
commit 450de51d0c
13 changed files with 382 additions and 22 deletions

View File

@@ -201,7 +201,7 @@ public class BatchExecutionEventTests {
public static class ChunkEventsListenerBinding {
@StreamListener(Sink.INPUT)
public void receive(ChunkContext chunkContext) {
public void receive(String message) {
chunkEventsLatch.countDown();
}
}