UDisks.ManagerBTRFS¶
- Implementations:
Methods¶
class |
|
class |
|
|
|
|
|
|
Virtual Methods¶
|
Properties¶
None
Signals¶
Name |
Short Description |
---|---|
Signal emitted when a remote caller is invoking the CreateVolume() D-Bus method. |
Fields¶
None
Class Details¶
- class UDisks.ManagerBTRFS¶
- Bases:
- Structure:
Abstract interface type for the D-Bus interface org.freedesktop.UDisks2.Manager.BTRFS.
New in version 2.1.3.
- classmethod interface_info()¶
- Returns:
A
Gio.DBusInterfaceInfo
. Do not free.- Return type:
Gets a machine-readable description of the org.freedesktop.UDisks2.Manager.BTRFS D-Bus interface.
New in version 2.1.3.
- classmethod override_properties(klass, property_id_begin)¶
- Parameters:
klass (
GObject.ObjectClass
) – The class structure for aGObject.Object
derived class.property_id_begin (
int
) – The property id to assign to the first overridden property.
- Returns:
The last property id.
- Return type:
Overrides all
GObject.Object
properties in theUDisks.ManagerBTRFS
interface for a concrete class. The properties are overridden in the order they are defined.New in version 2.1.3.
- call_create_volume(arg_devices, arg_label, arg_data_level, arg_md_level, arg_options, cancellable, callback, *user_data)¶
- Parameters:
arg_devices (
str
) – Argument to pass with the method invocation.arg_label (
str
) – Argument to pass with the method invocation.arg_data_level (
str
) – Argument to pass with the method invocation.arg_md_level (
str
) – Argument to pass with the method invocation.arg_options (
GLib.Variant
) – Argument to pass with the method invocation.cancellable (
Gio.Cancellable
orNone
) – AGio.Cancellable
orNone
.callback (
Gio.AsyncReadyCallback
orNone
) – AGio.AsyncReadyCallback
to call when the request is satisfied orNone
.
Asynchronously invokes the CreateVolume() D-Bus method on self. When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from (see
GLib.MainContext.push_thread_default
()). You can then callUDisks.ManagerBTRFS.call_create_volume_finish
() to get the result of the operation.See
UDisks.ManagerBTRFS.call_create_volume_sync
() for the synchronous, blocking version of this method.New in version 2.3.0.
- call_create_volume_finish(res)¶
- Parameters:
res (
Gio.AsyncResult
) – TheGio.AsyncResult
obtained from theGio.AsyncReadyCallback
passed toUDisks.ManagerBTRFS.call_create_volume
().- Raises:
- Returns:
- Return type:
Finishes an operation started with
UDisks.ManagerBTRFS.call_create_volume
().New in version 2.3.0.
- call_create_volume_sync(arg_devices, arg_label, arg_data_level, arg_md_level, arg_options, cancellable)¶
- Parameters:
arg_devices (
str
) – Argument to pass with the method invocation.arg_label (
str
) – Argument to pass with the method invocation.arg_data_level (
str
) – Argument to pass with the method invocation.arg_md_level (
str
) – Argument to pass with the method invocation.arg_options (
GLib.Variant
) – Argument to pass with the method invocation.cancellable (
Gio.Cancellable
orNone
) – AGio.Cancellable
orNone
.
- Raises:
- Returns:
- Return type:
Synchronously invokes the CreateVolume() D-Bus method on self. The calling thread is blocked until a reply is received.
See
UDisks.ManagerBTRFS.call_create_volume
() for the asynchronous version of this method.New in version 2.3.0.
- complete_create_volume(invocation)¶
- Parameters:
invocation (
Gio.DBusMethodInvocation
) – AGio.DBusMethodInvocation
.
Helper function used in service implementations to finish handling invocations of the CreateVolume() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar.
This method will free invocation, you cannot use it afterwards.
New in version 2.3.0.
- do_handle_create_volume(invocation, arg_devices, arg_label, arg_data_level, arg_md_level, arg_options) virtual¶
- Parameters:
invocation (
Gio.DBusMethodInvocation
) –arg_devices (
str
) –arg_label (
str
) –arg_data_level (
str
) –arg_md_level (
str
) –arg_options (
GLib.Variant
) –
- Return type:
Handler for the
UDisks.ManagerBTRFS
::handle-create-volume
signal.
Signal Details¶
- UDisks.ManagerBTRFS.signals.handle_create_volume(manager_b_t_r_f_s, invocation, arg_devices, arg_label, arg_data_level, arg_md_level, arg_options)¶
- Signal Name:
handle-create-volume
- Flags:
- Parameters:
manager_b_t_r_f_s (
UDisks.ManagerBTRFS
) – The object which received the signalinvocation (
Gio.DBusMethodInvocation
) – AGio.DBusMethodInvocation
.arg_devices ([
str
]) – Argument passed by remote caller.arg_label (
str
) – Argument passed by remote caller.arg_data_level (
str
) – Argument passed by remote caller.arg_md_level (
str
) – Argument passed by remote caller.arg_options (
GLib.Variant
) – Argument passed by remote caller.
- Returns:
Gio.DBUS_METHOD_INVOCATION_HANDLED
orTrue
if the invocation was handled,Gio.DBUS_METHOD_INVOCATION_UNHANDLED
orFalse
to let other signal handlers run.- Return type:
Signal emitted when a remote caller is invoking the CreateVolume() D-Bus method.
If a signal handler returns
True
, it means the signal handler will handle the invocation (e.g. take a reference to invocation and eventually callUDisks.ManagerBTRFS.complete_create_volume
() or e.g. g_dbus_method_invocation_return_error() on it) and no other signal handlers will run. If no signal handler handles the invocation, theGio.DBusError.UNKNOWN_METHOD
error is returned.New in version 2.3.0.