Skip to content

Commit 259daeb

Browse files
committed
Update axon-server-api. Make API non-experimental and add documentation on reserved field
1 parent 6e7ce94 commit 259daeb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/proto/dcb.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package io.axoniq.axonserver.grpc.event.dcb;
33
import "common.proto";
44
option java_multiple_files = true;
55

6-
/* EXPERIMENTAL: Service providing Event Store RPCs supporting DCB. */
6+
/* Service providing Event Store RPCs supporting DCB. */
77
service DcbEventStore {
88

99
/* Appends new events to the store. */
@@ -39,7 +39,7 @@ service DcbEventStore {
3939
rpc GetTags (GetTagsRequest) returns (GetTagsResponse);
4040
}
4141

42-
/* EXPERIMENTAL: Service providing Snapshot Store RPCs. */
42+
/* Service providing Snapshot Store RPCs. */
4343
service DcbSnapshotStore {
4444

4545
/* Adds a snapshot to the snapshot store. */
@@ -55,7 +55,7 @@ service DcbSnapshotStore {
5555
rpc GetLast (GetLastSnapshotRequest) returns (GetLastSnapshotResponse);
5656
}
5757

58-
/* EXPERIMENTAL: Service to use AxonServer as a provider of an EventScheduler */
58+
/* Service to use AxonServer as a provider of an EventScheduler */
5959
service DcbEventScheduler {
6060
// Schedule the given event for publication at the given time}. The returned ScheduleToken can be used to reschedule or cancel the planned publication.
6161
rpc ScheduleEvent (ScheduleEventRequest) returns (ScheduleToken) {
@@ -395,7 +395,7 @@ message DeleteSnapshotsRequest {
395395

396396
/* The key the snapshot is identified by. */
397397
bytes key = 1;
398-
398+
/* A reserved field that was used to allow specifying the start of the range for deletion of snapshots */
399399
reserved 2;
400400
/* The exclusive upper bound sequence of the snapshot to end the deletion. */
401401
int64 to_sequence = 3;

0 commit comments

Comments
 (0)