Skip to content

Commit e491826

Browse files
committed
Docs adaption after the review.
1 parent 82d111c commit e491826

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/proto/dcb.proto

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ service DcbEventStore {
2020
/* Gets the current _tail_ of the Event Store. The _tail_ points to the sequence of the first event stored. */
2121
rpc GetTail (GetTailRequest) returns (GetTailResponse);
2222

23-
/* Gets the sequence of the event whose timestamp approximately matches the given request. It returns the first
24-
event whose timestamp is greater or equal than the provided timestamp. If the provided timestamp is after the
25-
timestamp of the last event in the event store, the HEAD is returned.
23+
/* Returns the lowest sequence of an event with a timestamp equal to or higher than the given timestamp. The HEAD is
24+
returned if no events exist with a timestamp equal to or higher than the given timestamp.
2625
2726
N.B. Axon Server does not assign timestamps to events. The timestamps used for fulfilling this RPC are timestamps
2827
provided by the client. It could happen that there are events after the returned sequence that have an earlier
@@ -279,7 +278,7 @@ message RemoveTagsRequest {
279278
/* The sequence of the event whose tags should be removed. */
280279
int64 sequence = 1;
281280

282-
/* Tags to be removed. */
281+
/* Tags to be removed. If the event is not tagged with listed tags, they are skipped. */
283282
repeated Tag tag = 2;
284283
}
285284

0 commit comments

Comments
 (0)