Overview
Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev Class
Next Class
VUtils – Release 1
Interface org.violetlib.io.VOutputStream
Inherited members: ShowHide
Deprecated: ShowHide
org.violetlib.io

Interface VOutputStream

  • All Known Subinterfaces:
    TransactionalOutputStream
    public interface VOutputStream
    Basic output stream operations, excluding close. A close method is not supported to avoid inadvertent incorrect use with transactional output streams.
    • Methods 
      Modifier and Type Method and Description
      Ordinary member indicator flush Reveal DetailHide Detail
      abstract void flush()
       
      void flush() throws IOException
      Ordinary member indicator write Reveal DetailHide Detail
      void write(byte[] b)
       
      void write(byte[] b) throws IOException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(byte[] b, int off, int len)
       
      void write(byte[] b, int off, int len) throws IOException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(int b)
       
      void write(int b) throws IOException