Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/proto/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc.admin;
import "google/protobuf/empty.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc.Admin";

//************************ ContextAdminService *****************************

Expand Down
1 change: 1 addition & 0 deletions src/main/proto/command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc.command;
import "common.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc.Command";

/* The CommandService defines the gRPC requests necessary for subscribing command handlers, and dispatching commands. */
service CommandService {
Expand Down
1 change: 1 addition & 0 deletions src/main/proto/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc;
import "google/protobuf/any.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc";

/* Describes a serialized object */
message SerializedObject {
Expand Down
1 change: 1 addition & 0 deletions src/main/proto/control.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc.control;
import "common.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc.Control";

/* Service describing operations for connecting to the AxonServer platform.

Expand Down
1 change: 1 addition & 0 deletions src/main/proto/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc.event;
import "common.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc.Event";

/* Service providing operations against the EventStore functionality of Axon Server */
service EventStore {
Expand Down
1 change: 1 addition & 0 deletions src/main/proto/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";
package io.axoniq.axonserver.grpc.query;
import "common.proto";
option java_multiple_files = true;
option csharp_namespace = "AxonIQ.AxonServer.Grpc.Query";

/* Service providing operations for the Query Messaging component of AxonServer */
service QueryService {
Expand Down