Package | Description |
---|---|
com.ciscowebex.androidsdk.message |
Modifier and Type | Method and Description |
---|---|
Message.Draft |
Message.Draft.addAttachments(LocalFile... files)
Attach local files to the draft.
|
void |
MessageClient.post(java.lang.String idOrEmail,
java.lang.String text,
Mention[] mentions,
LocalFile[] files,
CompletionHandler<Message> handler)
Deprecated.
|
void |
MessageClient.postToPerson(EmailAddress email,
Message.Text text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
void |
MessageClient.postToPerson(EmailAddress email,
java.lang.String text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
void |
MessageClient.postToPerson(java.lang.String id,
Message.Text text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
void |
MessageClient.postToPerson(java.lang.String id,
java.lang.String text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
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.
|