Skip to content

Commit 4624809

Browse files
committed
Merge remote-tracking branch 'origin/opamp-websocket-service' into opamp-websocket-service
2 parents ba37adc + 522587d commit 4624809

File tree

1 file changed

+3
-3
lines changed
  • opamp-client/src/main/java/io/opentelemetry/opamp/client/internal/connectivity/websocket

1 file changed

+3
-3
lines changed

opamp-client/src/main/java/io/opentelemetry/opamp/client/internal/connectivity/websocket/WebSocket.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface WebSocket {
3030
* Sends a message via the websocket connection.
3131
*
3232
* @param request The message payload.
33-
* @return {@link Boolean#FALSE} If the message can't get dispatched for any reason, whether the
33+
* @return {@link Boolean#FALSE} If the message can't be dispatched for any reason, whether the
3434
* websocket isn't running, or the connection isn't established, or it's terminated. {@link
3535
* Boolean#TRUE} if the message can get sent. Returning {@link Boolean#TRUE} doesn't guarantee
3636
* that the message will arrive at the remote peer.
@@ -45,7 +45,7 @@ interface Listener {
4545
*/
4646
void onOpen();
4747

48-
/** Called when the connection is terminated and no further messages can get transmitted. */
48+
/** Called when the connection is terminated and no further messages can be transmitted. */
4949
void onClosed();
5050

5151
/**
@@ -57,7 +57,7 @@ interface Listener {
5757

5858
/**
5959
* Called when the connection is closed or cannot be established due to an error. No messages
60-
* can get transmitted after this method is called.
60+
* can be transmitted after this method is called.
6161
*
6262
* @param t The error.
6363
*/

0 commit comments

Comments
 (0)