|
71 | 71 | */ |
72 | 72 | /// Message.GetValueDiff |
73 | 73 | } |
| 74 | +/** |
| 75 | + * The Send type describes a function that knows how to dispatch a message as |
| 76 | + * part of the synchronization protocol. |
| 77 | + * @param toClientId The optional Id of the other client (in other words, the |
| 78 | + * other system) to which the message should be sent. If omitted, this is to be |
| 79 | + * a broadcast. |
| 80 | + * @param requestId The optional Id of the message, which should be awaited in |
| 81 | + * the response (if requested) to constitute a matched request/response |
| 82 | + * transaction. |
| 83 | + * @param message A number that indicates the type of the message, according to |
| 84 | + * the Message enum. |
| 85 | + * @param body A message-specific payload. |
| 86 | + * @category Synchronization |
| 87 | + * @since v5.0.0 |
| 88 | + */ |
| 89 | +/// Send |
74 | 90 | /** |
75 | 91 | * The Receive type describes a function that knows how to handle the arrival of |
76 | 92 | * a message as part of the synchronization protocol. |
|
90 | 106 | * @since v5.0.0 |
91 | 107 | */ |
92 | 108 | /// Receive |
93 | | -/** |
94 | | - * The Send type describes a function that knows how to dispatch a message as |
95 | | - * part of the synchronization protocol. |
96 | | - * @param toClientId The optional Id of the other client (in other words, the |
97 | | - * other system) to which the message should be sent. If omitted, this is to be |
98 | | - * a broadcast. |
99 | | - * @param requestId The optional Id of the message, which should be awaited in |
100 | | - * the response (if requested) to constitute a matched request/response |
101 | | - * transaction. |
102 | | - * @param message A number that indicates the type of the message, according to |
103 | | - * the Message enum. |
104 | | - * @param body A message-specific payload. |
105 | | - * @category Synchronization |
106 | | - * @since v5.0.0 |
107 | | - */ |
108 | | -/// Send |
109 | 109 | /** |
110 | 110 | * The SynchronizerStats type describes the number of times a Synchronizer |
111 | 111 | * object has sent or received data. |
|
0 commit comments