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

=doc #1818 formatting issue in websocket docs #1820

Merged
merged 2 commits into from
Jan 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update websocket-support.md
  • Loading branch information
ktoso authored Jan 29, 2018
commit d799cc8a8c682cc87efc3fbc02bd9e7ee84d693d
2 changes: 1 addition & 1 deletion docs/src/main/paradox/server-side/websocket-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ values of @scala[`UpgradeToWebSocket.requestedProtocols`]@java[`UpgradeToWebSock

### Handling Messages

A message handler is expected to be implemented as a @scala[`Flow[Message, Message, Any]]]@java[@unidoc[Flow[Message, Message, ?]]]. For typical request-response
A message handler is expected to be implemented as a @scala[@unidoc[Flow[Message, Message, Any]]]@java[@unidoc[Flow[Message, Message, ?]]]. For typical request-response
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for the additional catch @raboof

scenarios this fits very well and such a @unidoc[Flow] can be constructed from a simple function by using
@scala[`Flow[Message].map` or `Flow[Message].mapAsync`]@java[`Flow.<Message>create().map` or `Flow.<Message>create().mapAsync`].

Expand Down