summaryrefslogtreecommitdiff
path: root/java/nio/channels/Pipe.java
blob: 034dd3310f8cb6d91e42a07e2b912d48a3ad7475 (plain)
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
package java.nio.channels;

import java.nio.channels.spi.*;

public abstract class Pipe
{
    public abstract static class SinkChannel
	extends AbstractSelectableChannel
	implements WritableByteChannel, GatheringByteChannel
    {
	protected SinkChannel(SelectorProvider provider)
	    {
	    }
    }

    public abstract static class SourceChannel
	extends AbstractSelectableChannel
	implements ReadableByteChannel, ScatteringByteChannel
    {
	protected SourceChannel(SelectorProvider provider)
	{
	}
    }
    

    protected Pipe()
    {
    }
    
    static Pipe open()
    {
	return null;
    }
    
    public abstract  SinkChannel sink();
    public abstract  SourceChannel source();   
}