You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updated to 09-07-2021 for GA release
* Updated to use azure-core-testfrom current, until it is GAed
* Addressed APIView comments
* Updated changelog
* Fixed versioning issue
* Updated common version to latest released 1.0.4
* Fixed JavaDocs checkstyle issues
Co-authored-by: Andrei Giurgiu <agiurg@microsoft.com>
@@ -133,7 +133,7 @@ Use the `createChatThread` method to create a chat thread.
133
133
It contains a `getChatThread()` method which returns the `ChatThread` object that can be used to get the thread client from which you can get the `ChatThreadClient` for performing operations on the created thread: add participants, send message, etc.
134
134
The `ChatThread` object also contains the `getId()` method which retrieves the unique ID of the thread.
The `getChatThreadClient` method returns a thread client for a thread that already exists. It can be used for performing operations on the created thread: add participants, send message, etc.
182
182
`chatThreadId` is the unique ID of the existing chat thread.
@@ -323,7 +323,7 @@ Use `addParticipants` method to add participants to the chat thread.
323
323
-`display_name`, optional, is the display name for the thread member.
324
324
-`share_history_time`, optional, is the time from which the chat history is shared with the member. To share history since the inception of the chat thread, set this property to any date equal to, or less than the thread creation time. To share no history previous to when the member was added, set it to the current date. To share partial history, set it to the required date.
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/src/main/java/com/azure/communication/chat/ChatAsyncClient.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,14 @@
32
32
33
33
/**
34
34
* Async Client that supports chat operations.
35
+
*
36
+
* <p><strong>Instantiating an asynchronous Chat Client</strong></p>
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/src/main/java/com/azure/communication/chat/ChatServiceVersion.java
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/src/main/java/com/azure/communication/chat/ChatThreadAsyncClient.java
+14-21Lines changed: 14 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,14 @@
58
58
59
59
/**
60
60
* Async Client that supports chat thread operations.
61
+
*
62
+
* <p><strong>Instantiating an asynchronous Chat Thread Client</strong></p>
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/src/main/java/com/azure/communication/chat/ChatThreadClient.java
+14-12Lines changed: 14 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,14 @@
27
27
28
28
/**
29
29
* Sync Client that supports chat thread operations.
30
+
*
31
+
* <p><strong>Instantiating a synchronous Chat Thread Client</strong></p>
0 commit comments