forked from TrueCloudLab/frostfs-api-go
Update Object.Search, stream
This commit is contained in:
parent
a28f93bf0d
commit
d75a56f92e
3 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ rpc Get(GetRequest) returns (stream GetResponse);
|
|||
rpc Put(stream PutRequest) returns (PutResponse);
|
||||
rpc Delete(DeleteRequest) returns (DeleteResponse);
|
||||
rpc Head(HeadRequest) returns (HeadResponse);
|
||||
rpc Search(SearchRequest) returns (SearchResponse);
|
||||
rpc Search(SearchRequest) returns (stream SearchResponse);
|
||||
rpc GetRange(GetRangeRequest) returns (GetRangeResponse);
|
||||
rpc GetRangeHash(GetRangeHashRequest) returns (GetRangeHashResponse);
|
||||
|
||||
|
|
Binary file not shown.
|
@ -40,7 +40,7 @@ service Service {
|
|||
// Search objects in container. Version of query language format SHOULD BE
|
||||
// set to 1. Search query represented in serialized format (see query
|
||||
// package).
|
||||
rpc Search(SearchRequest) returns (SearchResponse);
|
||||
rpc Search(SearchRequest) returns (stream SearchResponse);
|
||||
|
||||
// GetRange of data payload. Ranges are set of pairs (offset, length).
|
||||
// Fragments order in response corresponds to ranges order in request.
|
||||
|
|
Loading…
Reference in a new issue