Fan.Sys.FileBuf.flush C# (CSharp) Method

flush() public final method

public final flush ( ) : Buf
return Buf
        public override sealed Buf flush()
        {
            try
              {
            //fp.getFD().sync();
            m_stream.Flush();
            return this;
              }
              catch (IOException e)
              {
            throw IOErr.make(e).val;
              }
        }

Usage Example

Example #1
0
 public override OutStream flush()
 {
     p.flush();
     return(this);
 }