Skip to content

Commit

Permalink
Merge pull request #83 from dolittle/get-all-projection-batches
Browse files Browse the repository at this point in the history
Add method on Projection Store to get all projections in batches.
  • Loading branch information
jakhog authored Jan 21, 2022
2 parents 5ffab29 + 0b74324 commit 626b896
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Runtime/Projections/Store.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@ message GetAllResponse {
// Represents the Projections service
service Projections {
rpc GetOne(GetOneRequest) returns(GetOneResponse);
rpc GetAll(GetAllRequest) returns(GetAllResponse);
rpc GetAll(GetAllRequest) returns(GetAllResponse); // DEPRECATED: This is superseeded by GetAllInBatches
rpc GetAllInBatches(GetAllRequest) returns(stream GetAllResponse);
}

0 comments on commit 626b896

Please sign in to comment.