You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
626 B
46 lines
626 B
/*
|
|
* Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.nio.channels;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
/**
|
|
* A channel that can read and write bytes. This interface simply unifies
|
|
* {@link ReadableByteChannel} and {@link WritableByteChannel}; it does not
|
|
* specify any new operations.
|
|
*
|
|
* @author Mark Reinhold
|
|
* @author JSR-51 Expert Group
|
|
* @since 1.4
|
|
*/
|
|
|
|
public interface ByteChannel
|
|
extends ReadableByteChannel, WritableByteChannel
|
|
{
|
|
|
|
}
|