Package | Description |
---|---|
com.ciscospark.androidsdk.room |
Modifier and Type | Method and Description |
---|---|
void |
RoomClient.create(java.lang.String title,
java.lang.String teamId,
CompletionHandler<Room> handler)
Creates a room.
|
void |
RoomClient.get(java.lang.String roomId,
CompletionHandler<Room> handler)
Retrieves the details for a room by id.
|
void |
RoomClient.list(java.lang.String teamId,
int max,
Room.RoomType type,
RoomClient.SortBy sortBy,
CompletionHandler<java.util.List<Room>> handler)
Lists all rooms where the authenticated user belongs.
|
void |
RoomClient.update(java.lang.String roomId,
java.lang.String title,
CompletionHandler<Room> handler)
Updates the details for a room by id.
|