MemoryInputStream
Object Hierarchy:
GLib.MemoryInputStream
GLib.MemoryInputStream
GLib.MemoryInputStream
GLib.InputStream
GLib.InputStream
GLib.InputStream->GLib.MemoryInputStream
GLib.Object
GLib.Object
GLib.Object->GLib.InputStream
GLib.PollableInputStream
GLib.PollableInputStream
GLib.PollableInputStream->GLib.MemoryInputStream
GLib.Seekable
GLib.Seekable
GLib.Seekable->GLib.MemoryInputStream
Description:
[
CCode ( type_id =
"g_memory_input_stream_get_type ()" ) ]
public class MemoryInputStream :
InputStream ,
PollableInputStream ,
Seekable
MemoryInputStream is a class for using arbitrary memory chunks as input for GIO streaming input operations.
As of GLib 2.34, MemoryInputStream implements
PollableInputStream .
Example: MemoryOutputStream:
public static int main (string [] args) { try { MemoryOutputStream os = new MemoryOutputStream (null , GLib.realloc, GLib.free); // Write data to memory: DataOutputStream dos = new DataOutputStream (os); dos.put_int16 (int16 .MIN); dos.put_int32 (int32 .MIN); dos.put_int64 (int64 .MIN); dos.close (); // Read data: uint8 [] data = os.steal_data (); data.length = (int ) os.get_data_size (); MemoryInputStream @is = new MemoryInputStream.from_data (data, GLib.free); DataInputStream dis = new DataInputStream (@is); print (" %d (Expected: %d ) \n " , dis.read_int16 (), int16 .MIN); print (" %d (Expected: %d ) \n " , dis.read_int32 (), int32 .MIN); print ("%" +int64 .FORMAT+" (Expected: %" +int64 .FORMAT+") \n " , dis.read_int64 (), int64 .MIN); } catch (IOError e) { print ("IOError %s \n " , e.message); } return 0 ; }
valac --pkg gio-2.0 GLib.MemoryOutputStream.vala
Content:
Creation methods:
Methods:
Inherited Members:
All known members inherited from class GLib.InputStream
All known members inherited from class GLib.Object
@get
@new
@ref
@set
add_toggle_ref
add_weak_pointer
bind_property
connect
constructed
disconnect
dispose
dup_data
dup_qdata
force_floating
freeze_notify
get_class
get_data
get_property
get_qdata
get_type
getv
interface_find_property
interface_install_property
interface_list_properties
is_floating
new_valist
new_with_properties
newv
notify
notify_property
ref_count
ref_sink
remove_toggle_ref
remove_weak_pointer
replace_data
replace_qdata
set_data
set_data_full
set_property
set_qdata
set_qdata_full
set_valist
setv
steal_data
steal_qdata
thaw_notify
unref
watch_closure
weak_ref
weak_unref
All known members inherited from interface GLib.PollableInputStream
All known members inherited from interface GLib.Seekable