Created
October 7, 2014 17:44
-
-
Save jbrisbin/b52afafd326fbf838174 to your computer and use it in GitHub Desktop.
Teaser of AmqpStreams
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
def stream1 = AmqpStreams.fromQueue(Queue.lookup('test') | |
.durable(true) | |
.bind('test')) | |
def stream2 = AmqpStreams.fromQueue('test') | |
Streams.merge(stream1, stream2) | |
.dispatchOn(environment) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment