updates to allow new gui to recreate session to continue where it left off
This commit is contained in:
parent
f2da8dc2c9
commit
c4234d33f0
4 changed files with 60 additions and 9 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue