Skip to content

Commit 2d60b8a

Browse files
authored
Update README.md
1 parent 325a375 commit 2d60b8a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,16 @@ Example Code:
161161
<T, R> Mono<R> requestReply(AsyncQuery<T> query, String targetName, Class<R> type);
162162
}
163163
```
164+
165+
#### Command Type
166+
167+
```java
168+
package org.reactivecommons.api.domain;
169+
170+
public class Command<T> {
171+
private final String name;
172+
private final String commandId;
173+
private final T data;
174+
}
175+
```
176+

0 commit comments

Comments
 (0)