Searched refs:simpleQueue (Results 1 – 1 of 1) sorted by relevance
1497 ArrayBlockingQueue<String> simpleQueue = new ArrayBlockingQueue<>(1); in onCommand() local1502 simpleQueue.offer("Positive button was clicked."); in onCommand()1507 simpleQueue.offer("Negative button was clicked."); in onCommand()1512 simpleQueue.offer("Neutral button was clicked."); in onCommand()1517 simpleQueue.offer("Dialog was cancelled."); in onCommand()1551 String dialogResponse = simpleQueue.take(); in onCommand()1562 String dialogResponse = simpleQueue.poll(15, TimeUnit.SECONDS); in onCommand()