Javascript File hasAutoFlush
From FreeSWITCH Wiki
Contents |
[edit]
Description
A boolean whether or not this file has automatic buffer flushing enabled
[edit]
Synopsis
hasAutoFlush
[edit]
Example
var fd = new File("/tmp/blah");
fd.open("read,write,autoFlush");
console_log("Do we have auto flush? " + fd.hasAutoFlush + "\n");
[edit]
