Created
May 26, 2015 13:55
-
-
Save tmclnk/5ecc955fd7b6d432472d to your computer and use it in GitHub Desktop.
GPars Dataflow Queue with Cancel
This file contains 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
import static groovyx.gpars.dataflow.Dataflow.task | |
import groovyx.gpars.dataflow.DataflowQueue | |
import java.util.concurrent.atomic.AtomicBoolean | |
final def buffer = new DataflowQueue() | |
final done = new AtomicBoolean() | |
def t = task { | |
while(!done.get()) { | |
def word = System.console().readLine 'Enter some text (or "stop" to stop): ' | |
buffer << word.toUpperCase() //add to the buffer | |
} | |
} | |
task { | |
while(true) { | |
def val = buffer.val //read from the buffer in a loop | |
println val | |
if(val == "STOP") { | |
println "You said stop, so I'm cancelling the other task." | |
done.set(true) | |
return | |
} | |
} | |
} | |
t.join() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment