Search:

Type: Posts; User: harryjava

Search: Search took 0.42 seconds.

  1. Re: Constructing a threaded pipeline using buffer to sort a list of integers

    thanks for your help anyways
  2. Re: Constructing a threaded pipeline using buffer to sort a list of integers

    No sorry this is all I have
  3. Re: Constructing a threaded pipeline using buffer to sort a list of integers

    it seems to me that it is taking string and reading it into buffer then output to the consumer, i think i may have my wires crossed somewhere. I want the buffer to pass an arraylist of intergers to...
  4. Re: Constructing a threaded pipeline using buffer to sort a list of integers

    Just did that there mate
  5. Re: Constructing a threaded pipeline using buffer to sort a list of integers

    import java.util.*;
    import java.util.concurrent.locks.*;
    import java.io.*;

    public class Pipeline{

    public static void main(String []args){

    ArrayList<Integer>buffer =new...
  6. Constructing a threaded pipeline using buffer to sort a list of integers

    A thread pipeline is a sequence of threads linked together with a chain of buffers. Each thread in the pipeline reads from the buffer preceding it in the chain and may write to the buffer following...
Results 1 to 6 of 6