Pipe.SinkChannel
  public
  static
  
  abstract
  class
  Pipe.SinkChannel
  
  
  
  
  
  
  
  
  
  
    extends AbstractSelectableChannel
  
  
  
  
  
      implements
      
        GatheringByteChannel, 
      
        WritableByteChannel
      
  
  
| java.lang.Object | ||||
| ↳ | java.nio.channels.spi.AbstractInterruptibleChannel | |||
| ↳ | java.nio.channels.SelectableChannel | |||
| ↳ | java.nio.channels.spi.AbstractSelectableChannel | |||
| ↳ | java.nio.channels.Pipe.SinkChannel | |||
A channel representing the writable end of a Pipe.
Summary
Protected constructors | |
|---|---|
      
      SinkChannel(SelectorProvider provider)
      
      
        Initializes a new instance of this class.  | 
  |
Public methods | |
|---|---|
        
        
        
        final
        
        int
     | 
  
    
      
      validOps()
      
      
        Returns an operation set identifying this channel's supported operations.  | 
  
Inherited methods | |
|---|---|
Protected constructors
SinkChannel
protected SinkChannel (SelectorProvider provider)
Initializes a new instance of this class.
| Parameters | |
|---|---|
provider | 
        
          SelectorProvider: The selector provider | 
      
Public methods
validOps
public final int validOps ()
Returns an operation set identifying this channel's supported operations.
 Pipe-sink channels only support writing, so this method returns
 SelectionKey.OP_WRITE.  
| Returns | |
|---|---|
int | 
        The valid-operation set |