@@ -718,6 +718,7 @@ public <T> Single<T> invoke(Class<T> returnType, String method, Object... args)
718718
719719 /**
720720 * Invokes a hub method on the server using the specified method name and arguments.
721+ * A Type can be retrieved using {@link TypeReference}
721722 *
722723 * @param returnType The expected return type.
723724 * @param method The name of the server method to invoke.
@@ -1097,6 +1098,7 @@ public <T1, T2, T3, T4, T5, T6, T7, T8> Subscription on(String target, Action8<T
10971098 /**
10981099 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
10991100 * Should be used for generic classes and Parameterized Collections, like List or Map.
1101+ * A Type can be retrieved using {@link TypeReference}
11001102 *
11011103 * @param target The name of the hub method to define.
11021104 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1113,6 +1115,7 @@ public <T1> Subscription on(String target, Action1<T1> callback, Type param1) {
11131115 /**
11141116 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
11151117 * Should be used for generic classes and Parameterized Collections, like List or Map.
1118+ * A Type can be retrieved using {@link TypeReference}
11161119 *
11171120 * @param target The name of the hub method to define.
11181121 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1133,6 +1136,7 @@ public <T1, T2> Subscription on(String target, Action2<T1, T2> callback, Type pa
11331136 /**
11341137 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
11351138 * Should be used for generic classes and Parameterized Collections, like List or Map.
1139+ * A Type can be retrieved using {@link TypeReference}
11361140 *
11371141 * @param target The name of the hub method to define.
11381142 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1157,6 +1161,7 @@ public <T1, T2, T3> Subscription on(String target, Action3<T1, T2, T3> callback,
11571161 /**
11581162 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
11591163 * Should be used for generic classes and Parameterized Collections, like List or Map.
1164+ * A Type can be retrieved using {@link TypeReference}
11601165 *
11611166 * @param target The name of the hub method to define.
11621167 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1183,6 +1188,7 @@ public <T1, T2, T3, T4> Subscription on(String target, Action4<T1, T2, T3, T4> c
11831188 /**
11841189 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
11851190 * Should be used for generic classes and Parameterized Collections, like List or Map.
1191+ * A Type can be retrieved using {@link TypeReference}
11861192 *
11871193 * @param target The name of the hub method to define.
11881194 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1212,6 +1218,7 @@ public <T1, T2, T3, T4, T5> Subscription on(String target, Action5<T1, T2, T3, T
12121218 /**
12131219 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
12141220 * Should be used for generic classes and Parameterized Collections, like List or Map.
1221+ * A Type can be retrieved using {@link TypeReference}
12151222 *
12161223 * @param target The name of the hub method to define.
12171224 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1243,6 +1250,7 @@ public <T1, T2, T3, T4, T5, T6> Subscription on(String target, Action6<T1, T2, T
12431250 /**
12441251 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
12451252 * Should be used for generic classes and Parameterized Collections, like List or Map.
1253+ * A Type can be retrieved using {@link TypeReference}
12461254 *
12471255 * @param target The name of the hub method to define.
12481256 * @param callback The handler that will be raised when the hub method is invoked.
@@ -1277,6 +1285,7 @@ public <T1, T2, T3, T4, T5, T6, T7> Subscription on(String target, Action7<T1, T
12771285 /**
12781286 * Registers a handler that will be invoked when the hub method with the specified method name is invoked.
12791287 * Should be used for generic classes and Parameterized Collections, like List or Map.
1288+ * A Type can be retrieved using {@link TypeReference}
12801289 *
12811290 * @param target The name of the hub method to define.
12821291 * @param callback The handler that will be raised when the hub method is invoked.
0 commit comments