Top |
UDisksDaemon * | daemon | Read / Write / Construct Only |
UDisksLinuxDevice * | device | Read / Write / Construct Only |
GObject ╰── GDBusObjectSkeleton ╰── UDisksObjectSkeleton ╰── UDisksLinuxBlockObject
UDisksLinuxBlockObject * udisks_linux_block_object_new (UDisksDaemon *daemon
,UDisksLinuxDevice *device
);
Create a new block object.
void udisks_linux_block_object_uevent (UDisksLinuxBlockObject *object
,const gchar *action
,UDisksLinuxDevice *device
);
Updates all information on interfaces on object
.
object |
||
action |
Uevent action or |
|
device |
A new UDisksLinuxDevice device object or |
UDisksDaemon *
udisks_linux_block_object_get_daemon (UDisksLinuxBlockObject *object
);
Gets the daemon used by object
.
UDisksLinuxDevice *
udisks_linux_block_object_get_device (UDisksLinuxBlockObject *object
);
Gets the current UDisksLinuxDevice for object
. Connect to
“notify” to track changes to the “device”
property.
void
udisks_linux_block_object_trigger_uevent
(UDisksLinuxBlockObject *object
);
Triggers a 'change' uevent in the kernel.
The triggered event will bubble up from the kernel through the udev stack and will eventually be received by the udisks daemon process itself. This method does not wait for the event to be received.
void
udisks_linux_block_object_reread_partition_table
(UDisksLinuxBlockObject *object
);
Requests the kernel to re-read the partition table for object
.
The events from any change this may cause will bubble up from the kernel through the udev stack and will eventually be received by the udisks daemon process itself. This method does not wait for the event to be received.
typedef struct _UDisksLinuxBlockObject UDisksLinuxBlockObject;
The UDisksLinuxBlockObject structure contains only private data and should only be accessed using the provided API.
“daemon”
property“daemon” UDisksDaemon *
The UDisksDaemon the object is for.
Flags: Read / Write / Construct Only
“device”
property“device” UDisksLinuxDevice *
The UDisksLinuxDevice for the object. Connect to the “notify” signal to get notified whenever this is updated.
Flags: Read / Write / Construct Only