GLib.Variant.new_from_data

function new_from_data(type: GLib.VariantType, data: ByteArray, trusted: Boolean, notify: GLib.DestroyNotify, user_data: void): GLib.Variant {
    // Gjs wrapper for g_variant_new_from_data()
}
  

Creates a new GLib.Variant instance from serialised data.

type is the type of GLib.Variant instance that will be constructed. The interpretation of data depends on knowing the type.

data is not modified by this function and must remain valid with an unchanging value until such a time as notify is called with user_data. If the contents of data change before that time then the result is undefined.

If data is trusted to be serialised data in normal form then trusted should be true. This applies to serialised data created within this process or read from a trusted location on the disk (such as a file installed in /usr/lib alongside your application). You should set trusted to false if data is read from the network, a file in the user's home directory, etc.

If data was not stored in this machine's native endianness, any multi-byte numeric values in the returned variant will also be in non-native endianness. GLib.Variant.prototype.byteswap can be used to recover the original values.

notify will be called with user_data when data is no longer needed. The exact time of this call is unspecified and might even be before this function returns.

Since 2.24

type

a definite GLib.VariantType

data

the serialised data

trusted

true if data is definitely in normal form

notify

function to call when data is no longer needed

user_data

data for notify

Returns

a new floating GLib.Variant of type type