updates to allow new gui to recreate session to continue where it left off

This commit is contained in:
Blake Harnden 2020-03-04 20:09:56 -08:00
parent f2da8dc2c9
commit c4234d33f0
4 changed files with 60 additions and 9 deletions

View file

@ -22,6 +22,8 @@ service CoreApi {
}
rpc GetSession (GetSessionRequest) returns (GetSessionResponse) {
}
rpc CheckSession (CheckSessionRequest) returns (CheckSessionResponse) {
}
rpc GetSessionOptions (GetSessionOptionsRequest) returns (GetSessionOptionsResponse) {
}
rpc SetSessionOptions (SetSessionOptionsRequest) returns (SetSessionOptionsResponse) {
@ -212,6 +214,14 @@ message GetSessionsResponse {
repeated SessionSummary sessions = 1;
}
message CheckSessionRequest {
int32 session_id = 1;
}
message CheckSessionResponse {
bool result = 1;
}
message GetSessionRequest {
int32 session_id = 1;
}