Method
EDataCalCalMetaBackendremove_component_sync
since: 3.26
Declaration [src]
gboolean
e_cal_meta_backend_remove_component_sync (
ECalMetaBackend* meta_backend,
EConflictResolution conflict_resolution,
const gchar* uid,
const gchar* extra,
const gchar* object,
ECalOperationFlags opflags,
GCancellable* cancellable,
GError** error
)
Description [src]
Removes a component from the remote side, with all its detached instances. The object is not NULL when it’s removing locally deleted object
in offline mode. Being it NULL, the descendant can obtain the object
from the ECalCache.
It is mandatory to implement this virtual method by the writable descendant.
Available since: 3.26
Parameters
conflict_resolution-
Type:
EConflictResolutionAn
EConflictResolutionto use. uid-
Type:
const gchar*A component UID.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. extra-
Type:
const gchar*Extra data being saved with the component in the local cache, or
NULL.The argument can be NULL.The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. object-
Type:
const gchar*Corresponding iCalendar object, as stored in the local cache, or
NULL.The argument can be NULL.The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. opflags-
Type:
ECalOperationFlagsBit-or of
ECalOperationFlags. cancellable-
Type:
GCancellableOptional
GCancellableobject, orNULL.The argument can be NULL.The data is owned by the caller of the method. error-
Type:
GError **The return location for a recoverable error.
The argument can be NULL.If the return location is not NULL, then you must initialize it to aNULLGError*.The argument will be left initialized to NULLby the method if there are no errors.In case of error, the argument will be set to a newly allocated GError; the caller will take ownership of the data, and be responsible for freeing it.