Method

PurpleConversationsend_message_async

since: 3.0

Declaration [src]

void
purple_conversation_send_message_async (
  PurpleConversation* conversation,
  PurpleMessage* message,
  GCancellable* cancellable,
  GAsyncReadyCallback callback,
  gpointer data
)

Description [src]

Sends message to conversation.

This will lookup the account and protocol plugin that conversation belongs to and call purple_protocol_conversation_send_message_async() for message.

You will need to call purple_conversation_send_message_finish() from callback.

Available since: 3.0

Parameters

message

Type: PurpleMessage

The message to send.

The data is owned by the caller of the function.
cancellable

Type: GCancellable

Optional GCancellable object, NULL to ignore.

The argument can be NULL.
The data is owned by the caller of the function.
callback

Type: GAsyncReadyCallback

The callback to call after the conversation has been created.

The argument can be NULL.
data

Type: gpointer

Optional user data to pass to callback.

The argument can be NULL.
The data is owned by the caller of the function.