Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #847 - deprecate asyncWriteTimeout in the jetty websocket API #4597

Merged
merged 1 commit into from Mar 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -188,6 +188,7 @@ public WebSocketPolicy delegateAs(WebSocketBehavior behavior)
*
* @return the timeout for async write operations. negative values indicate disabled timeout.
*/
@Deprecated
public long getAsyncWriteTimeout()
{
return asyncWriteTimeout;
Expand Down
Expand Up @@ -427,6 +427,7 @@ public boolean isDispatchIO()
*
* @return number of milliseconds for timeout of an attempted write operation
*/
@Deprecated
public long getAsyncWriteTimeout()
{
return getPolicy().getAsyncWriteTimeout();
Expand Down