Method
ECalClientcreate_object
since: 3.2
Declaration [src]
void
e_cal_client_create_object (
ECalClient* client,
ICalComponent* icalcomp,
ECalOperationFlags opflags,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description [src]
Requests the calendar backend to create the object specified by the icalcomp
argument. Some backends would assign a specific UID to the newly created object,
but this function does not modify the original icalcomp if its UID changes.
The call is finished by e_cal_client_create_object_finish() from the callback.
Available since: 3.2
This method completes asynchronously. Use e_cal_client_create_object_finish() inside the GAsyncReadyCallback to obtain the result of the operation.
Parameters
icalcomp-
Type:
NoneThe component to create.
The data is owned by the caller of the method. opflags-
Type:
ECalOperationFlagsBit-or of
ECalOperationFlags. cancellable-
Type:
GCancellableA
GCancellable; can beNULL.The argument can be NULL.The data is owned by the caller of the method. callback-
Type:
GAsyncReadyCallbackCallback to call when a result is ready.
The argument can be NULL. user_data-
Type:
gpointerUser data for the
callback.The argument can be NULL.The data is owned by the caller of the method.