Skip to content

Instantly share code, notes, and snippets.

@tmclnk
Created May 26, 2015 13:55
Show Gist options
  • Save tmclnk/5ecc955fd7b6d432472d to your computer and use it in GitHub Desktop.
Save tmclnk/5ecc955fd7b6d432472d to your computer and use it in GitHub Desktop.
GPars Dataflow Queue with Cancel
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