1. /*
  2. * @(#)ByteChannel.java 1.10 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.nio.channels;
  8. import java.io.IOException;
  9. /**
  10. * A channel that can read and write bytes. This interface simply unifies
  11. * {@link ReadableByteChannel} and {@link WritableByteChannel}; it does not
  12. * specify any new operations.
  13. *
  14. * @author Mark Reinhold
  15. * @author JSR-51 Expert Group
  16. * @version 1.10, 03/12/19
  17. * @since 1.4
  18. */
  19. public interface ByteChannel
  20. extends ReadableByteChannel, WritableByteChannel
  21. {
  22. }