Group Service
An abstract class representing a GroupService, which provides methods for managing groups. It extends the BaseService class and requires a context parameter for initialization.
Parameters
The context used for initialization and performing operations.
Inheritors
Functions
Adds a user to a group associated with current user id asynchronously.
Adds a user to a group associated with current user id asynchronously with a completion callback.
Creates a new group asynchronously and associate with current user id.
Creates a new group and associate with current user id asynchronously with a completion callback.
Deletes an existing group associated with current user id asynchronously.
Deletes an existing group associated with current user id asynchronously with a completion callback.
Deletes a user from a group associated with current user id asynchronously.
Deletes a user from a group associated with current user id asynchronously with a completion callback.
Retrieves a specific group associated with the current user ID asynchronously.
Retrieves a specific group associated with current user id asynchronously with a completion callback.
Updates an existing group associated with current user id asynchronously.
Updates an existing group associated with current user id asynchronously with a completion callback.