CScreensaver.LogindManager¶
- Implementations:
CScreensaver.LogindManagerProxy
,CScreensaver.LogindManagerSkeleton
Methods¶
class |
|
class |
|
|
|
|
|
|
|
|
Virtual Methods¶
|
Properties¶
None
Signals¶
Name |
Short Description |
---|---|
Signal emitted when a remote caller is invoking the ‘GetSession() [gdbus-method-org-freedesktop-login1-Manager.GetSession]’ D-Bus method. |
Fields¶
None
Class Details¶
- class CScreensaver.LogindManager¶
- Bases:
- Structure:
Abstract interface type for the D-Bus interface ‘org.freedesktop.login1.Manager [gdbus-interface-org-freedesktop-login1-Manager.top_of_page]’.
- classmethod interface_info()¶
- Returns:
A
Gio.DBusInterfaceInfo
. Do not free.- Return type:
Gets a machine-readable description of the ‘org.freedesktop.login1.Manager [gdbus-interface-org-freedesktop-login1-Manager.top_of_page]’ D-Bus interface.
- 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 theCScreensaver.LogindManager
interface for a concrete class. The properties are overridden in the order they are defined.
- call_get_session(arg_session_id, cancellable, callback, *user_data)¶
- Parameters:
arg_session_id (
str
) – 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 ‘GetSession() [gdbus-method-org-freedesktop-login1-Manager.GetSession]’ 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 callCScreensaver.LogindManager.call_get_session_finish
() to get the result of the operation.See
CScreensaver.LogindManager.call_get_session_sync
() for the synchronous, blocking version of this method.
- call_get_session_finish(res)¶
- Parameters:
res (
Gio.AsyncResult
) – TheGio.AsyncResult
obtained from theGio.AsyncReadyCallback
passed toCScreensaver.LogindManager.call_get_session
().- Raises:
- Returns:
True
if the call succeeded,False
if error is set.- out_object_path:
Return location for return parameter or
None
to ignore.
- Return type:
Finishes an operation started with
CScreensaver.LogindManager.call_get_session
().
- call_get_session_sync(arg_session_id, cancellable)¶
- Parameters:
arg_session_id (
str
) – Argument to pass with the method invocation.cancellable (
Gio.Cancellable
orNone
) – AGio.Cancellable
orNone
.
- Raises:
- Returns:
True
if the call succeeded,False
if error is set.- out_object_path:
Return location for return parameter or
None
to ignore.
- Return type:
Synchronously invokes the ‘GetSession() [gdbus-method-org-freedesktop-login1-Manager.GetSession]’ D-Bus method on self. The calling thread is blocked until a reply is received.
See
CScreensaver.LogindManager.call_get_session
() for the asynchronous version of this method.
- complete_get_session(invocation, object_path)¶
- Parameters:
invocation (
Gio.DBusMethodInvocation
) – AGio.DBusMethodInvocation
.object_path (
str
) – Parameter to return.
Helper function used in service implementations to finish handling invocations of the ‘GetSession() [gdbus-method-org-freedesktop-login1-Manager.GetSession]’ 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.
- do_handle_get_session(invocation, arg_session_id) virtual¶
- Parameters:
invocation (
Gio.DBusMethodInvocation
) –arg_session_id (
str
) –
- Return type:
Signal Details¶
- CScreensaver.LogindManager.signals.handle_get_session(logind_manager, invocation, arg_session_id)¶
- Signal Name:
handle-get-session
- Flags:
- Parameters:
logind_manager (
CScreensaver.LogindManager
) – The object which received the signalinvocation (
Gio.DBusMethodInvocation
) – AGio.DBusMethodInvocation
.arg_session_id (
str
) – 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 ‘GetSession() [gdbus-method-org-freedesktop-login1-Manager.GetSession]’ 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 callCScreensaver.LogindManager.complete_get_session
() 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.