Gio.FilterInputStream

const Gio = imports.gi.Gio;

let filterInputStream = new Gio.FilterInputStream({
    base_stream: value,
    close_base_stream: value,
});
  

Base class for input stream implementations that perform some kind of filtering operation on a base stream. Typical examples of filtering operations are character set conversion, compression and byte order flipping.

Hierarchy

  • GObject.Object
    • Gio.InputStream
      • Gio.FilterInputStream