Package | Description |
---|---|
com.ciscowebex.androidsdk.message |
Modifier and Type | Class and Description |
---|---|
static class |
Mention.All
Mention all people in a space.
|
static class |
Mention.MentionAll
Deprecated.
|
static class |
Mention.MentionPerson
Deprecated.
|
static class |
Mention.Person
Mention one particular person by person Id.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Mention> |
Message.getMentions()
Returns all people mentioned in the message
|
Modifier and Type | Method and Description |
---|---|
Message.Draft |
Message.Draft.addMentions(Mention... mentions)
Mention either one people or all people in a space.
|
void |
MessageClient.edit(Message originalMessage,
Message.Text text,
Mention[] mentions,
CompletionHandler<MessageObserver.MessageEdited> handler)
Edit a previous sent message asynchronously.
|
void |
MessageClient.list(java.lang.String spaceId,
Before before,
int max,
Mention[] mentions,
CompletionHandler<java.util.List<Message>> handler)
Lists all messages in a space by space Id asynchronously.
|
void |
MessageClient.post(java.lang.String idOrEmail,
java.lang.String text,
Mention[] mentions,
LocalFile[] files,
CompletionHandler<Message> handler)
Deprecated.
|
void |
MessageClient.postToSpace(java.lang.String id,
Message.Text text,
Mention[] mentions,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a space asynchronously.
|
void |
MessageClient.postToSpace(java.lang.String id,
java.lang.String text,
Mention[] mentions,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a space asynchronously.
|