Interface ByteOutput

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
NullByteOutput, OutputStreamByteOutput

public interface ByteOutput extends AutoCloseable

ByteOutput

  • 注意: ByteOutput 的 close() 为非幂等操作, 重复 close 将抛 AlreadyClosedException.
Version:
0.0.1
Author:
scx567888
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    关闭此流, 并执行与关闭相关的所有必要行为.
    void
     
    boolean
     
    void
    write(byte b)
     
    default void
    write(byte... b)
     
    void