Exemplo n.º 1
0
 public void Flush(bool force = false)
 {
     force            |= FForceOnNextFlush;
     FForceOnNextFlush = false;
     FStreams.Flush(force);
     foreach (var stream in this)
     {
         stream.Flush(force);
     }
 }
Exemplo n.º 2
0
 public bool Sync()
 {
     IsChanged = FStreams.Sync();
     foreach (var stream in FStreams)
     {
         IsChanged |= stream.Sync();
     }
     // Acknowledge the change
     FStreams.Flush();
     return(IsChanged);
 }
Exemplo n.º 3
0
 public virtual void Flush(bool force = false)
 {
     FStream.Flush(force);
 }
Exemplo n.º 4
0
 public void Flush(bool force = false)
 {
     FIOStream.Flush(force);
 }