G
G
GooInLove2015-07-18 15:40:42
Java
GooInLove, 2015-07-18 15:40:42

How to work with streams?

I have an array of three elements, let's say "a", "b", "c". And three streams. How to ensure that each of the three threads work with only one element, on which its turn falls?
That is, thread 1 must work on element "a", thread 2 on element "b", and thread 3 on element "c".

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
angry_cellophane, 2015-07-18
@GooInLove

public class Main {

    public static final int WORKERS_COUNT = 3;

    private static class Worker implements Runnable {

        private final BlockingQueue<Integer> queue;
        private final int number;

        private Worker(BlockingQueue<Integer> queue, int number) {
            this.queue = queue;
            this.number = number;
        }

        @Override public void run() {
            try {
                Integer i = queue.take();
                System.out.println("number: "+number+", i ="+i);
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
        }
    }

    public static void main(String[] args) {
        BlockingQueue<Integer> queue = new LinkedBlockingQueue<>();
        queue.add(1);
        queue.add(2);
        queue.add(3);

        ExecutorService pool = Executors.newFixedThreadPool(WORKERS_COUNT);
        for (int i = 0; i < WORKERS_COUNT; i++) {
            pool.execute(new Worker(queue, i));
        }
        pool.shutdown();
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question