File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
src/SignalR/clients/java/signalr
core/src/main/java/com/microsoft/signalr Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ test/test-results
77out /
88* .class
99* .jar
10+ * version.java
1011.project
1112.classpath
13+ core /src /main /java /com /microsoft /signalr /Version.java
1214# We need the gradle-wrapper.jar file so that others can use the gradle wrapper
1315! gradle /wrapper /gradle-wrapper.jar
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ HttpHubConnectionBuilder withHttpClient(HttpClient httpClient) {
5959 /**
6060 * Sets the {@link HubProtocol} to be used by the {@link HubConnection}.
6161 *
62+ * @param protocol The {@link HubProtocol} to be used by the {@link HubConnection}.
6263 * @return This instance of the HttpHubConnectionBuilder.
6364 */
6465 public HttpHubConnectionBuilder withProtocol (HubProtocol protocol ) {
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ public interface HubProtocol {
1717 /**
1818 * Creates a new list of {@link HubMessage}s.
1919 * @param message A ByteBuffer representation of one or more {@link HubMessage}s.
20+ * @param binder The {@link InvocationBinder} to use for this Protocol instance.
2021 * @return A list of {@link HubMessage}s.
2122 */
2223 List <HubMessage > parseMessages (ByteBuffer message , InvocationBinder binder );
You can’t perform that action at this time.
0 commit comments