-
Notifications
You must be signed in to change notification settings - Fork 0
/
PipedDemo.java
84 lines (59 loc) · 1.33 KB
/
PipedDemo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package pipeddemo;
import java.io.*;
class Producer extends Thread
{
OutputStream os;
public Producer(OutputStream o)
{
os=o;
}
public void run()
{
int count=1;
while(true)
{
try{
os.write(count);
os.flush();
System.out.println("Producer "+count);
System.out.flush();
Thread.sleep(10);
count++;
}catch(Exception e){}
}
}
}
class Consumer extends Thread
{
InputStream is;
public Consumer(InputStream s)
{
is=s;
}
public void run()
{
int x;
while(true)
{
try{
x=is.read();
System.out.println("Consumer "+x);
System.out.flush();
Thread.sleep(10);
}catch(Exception e){}
}
}
}
public class PipedDemo
{
public static void main(String[] args) throws Exception
{
PipedInputStream pis=new PipedInputStream();
PipedOutputStream pos=new PipedOutputStream();
pos.connect(pis);
Producer p=new Producer(pos);
Consumer c=new Consumer(pis);
p.start();
c.start();
}
}