File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
opamp-client/src/main/java/io/opentelemetry/opamp/client/internal/connectivity/websocket Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 */
You can’t perform that action at this time.
0 commit comments