handle_call
Description:
[ Version ( since = "3.26" ) ]
public virtual signal bool handle_call (Client client, string method, Variant id, Variant @params)
public virtual signal bool handle_call (Client client, string method, Variant id, Variant @params)
This method is emitted when the client requests a method call.
If you return true from this function, you should reply to it (even upon failure), using [method@Client.reply ] or [method@Client.reply_async].
Parameters:
client |
A Client |
method |
The method that was called |
id |
The identifier of the method call |
params |
The parameters of the method call |
Returns:
true if the request was handled. |