grpc: removed set session location, achieved with start session

This commit is contained in:
Blake Harnden 2021-04-27 10:59:10 -07:00
parent e0fe86bcb2
commit a217c2445c
6 changed files with 0 additions and 130 deletions

View file

@ -27,8 +27,6 @@ service CoreApi {
}
rpc SetSessionMetadata (SetSessionMetadataRequest) returns (SetSessionMetadataResponse) {
}
rpc SetSessionLocation (SetSessionLocationRequest) returns (SetSessionLocationResponse) {
}
rpc SetSessionState (SetSessionStateRequest) returns (SetSessionStateResponse) {
}
rpc AddSessionServer (AddSessionServerRequest) returns (AddSessionServerResponse) {
@ -245,15 +243,6 @@ message SetSessionMetadataResponse {
bool result = 1;
}
message SetSessionLocationRequest {
int32 session_id = 1;
SessionLocation location = 2;
}
message SetSessionLocationResponse {
bool result = 1;
}
message SetSessionStateRequest {
int32 session_id = 1;
SessionState.Enum state = 2;