Virtual Method
IdeDebuggerinterpret_async
Declaration
void
interpret_async (
IdeDebugger* self,
const gchar* command,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description
Asynchronously requests that the debugger interpret the command.
This is used by the interactive-console to submit commands to the debugger that are in the native syntax of that debugger.
The debugger is expected to return any textual output via the IdeDebugger::log signal.
Call ide_debugger_interpret_finish() from callback to determine if the
command was interpreted.
Parameters
command-
Type:
const gchar*A command to execute.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. cancellable-
Type:
GCancellableA
GCancellableorNULL.The argument can be NULL.The data is owned by the caller of the function. callback-
Type:
GAsyncReadyCallbackA callback to execute, or
NULL. user_data-
Type:
gpointerUser data for
callback.The argument can be NULL.The data is owned by the caller of the function.