Created
May 8, 2020 06:14
-
-
Save bbalakriz/34ddab613dae0b3df6d0593be6ad3577 to your computer and use it in GitHub Desktop.
HashTagReaderService.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ApplicationScoped | |
| public class HashTagReaderService { | |
| @Incoming("agg-feeds") | |
| @Outgoing("hash-stream") | |
| @Broadcast | |
| public String stream(String hashStream) { | |
| return hashStream; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment