Skip to content

Commit e1dc944

Browse files
committed
adding KDoc @Version
1 parent 2597a05 commit e1dc944

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

kotlin/src/main/kotlin/org/axonframework/extensions/kotlin/QueryGatewayExtensions.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ inline fun <reified R, reified Q> QueryGateway.queryForOptional(queryName: Strin
121121
* @return [Stream] a stream of results
122122
* @see QueryGateway.scatterGather
123123
* @see ResponseTypes
124+
* @since 0.2.0
124125
*/
125126
@ExperimentalTime
126127
inline fun <reified R, reified Q> QueryGateway.scatterGatherForSingle(query: Q, timeout: Long,
@@ -140,6 +141,7 @@ inline fun <reified R, reified Q> QueryGateway.scatterGatherForSingle(query: Q,
140141
* @return [Stream] a stream of results
141142
* @see QueryGateway.scatterGather
142143
* @see ResponseTypes
144+
* @since 0.2.0
143145
*/
144146
@ExperimentalTime
145147
inline fun <reified R, reified Q> QueryGateway.scatterGatherForSingle(queryName: String, query: Q, timeout: Long,
@@ -158,6 +160,7 @@ inline fun <reified R, reified Q> QueryGateway.scatterGatherForSingle(queryName:
158160
* @return [Stream] a stream of results
159161
* @see QueryGateway.scatterGather
160162
* @see ResponseTypes
163+
* @since 0.2.0
161164
*/
162165
@ExperimentalTime
163166
inline fun <reified R, reified Q> QueryGateway.scatterGatherForMultiple(query: Q, timeout: Long,
@@ -177,6 +180,7 @@ inline fun <reified R, reified Q> QueryGateway.scatterGatherForMultiple(query: Q
177180
* @return [Stream] a stream of results
178181
* @see QueryGateway.scatterGather
179182
* @see ResponseTypes
183+
* @since 0.2.0
180184
*/
181185
@ExperimentalTime
182186
inline fun <reified R, reified Q> QueryGateway.scatterGatherForMultiple(queryName: String, query: Q, timeout: Long,
@@ -195,6 +199,7 @@ inline fun <reified R, reified Q> QueryGateway.scatterGatherForMultiple(queryNam
195199
* @return [Stream] a stream of results
196200
* @see QueryGateway.scatterGather
197201
* @see ResponseTypes
202+
* @since 0.2.0
198203
*/
199204
@ExperimentalTime
200205
inline fun <reified R, reified Q> QueryGateway.scatterGatherForOptional(query: Q, timeout: Long,
@@ -214,6 +219,7 @@ inline fun <reified R, reified Q> QueryGateway.scatterGatherForOptional(query: Q
214219
* @return [Stream] a stream of results
215220
* @see QueryGateway.scatterGather
216221
* @see ResponseTypes
222+
* @since 0.2.0
217223
*/
218224
@ExperimentalTime
219225
inline fun <reified R, reified Q> QueryGateway.scatterGatherForOptional(queryName: String, query: Q, timeout: Long,

0 commit comments

Comments
 (0)