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
|
@ -262,6 +262,16 @@ class CoreGrpcClient:
|
|||
"""
|
||||
return self.stub.GetSessions(core_pb2.GetSessionsRequest())
|
||||
|
||||
def check_session(self, session_id: int) -> core_pb2.CheckSessionResponse:
|
||||
"""
|
||||
Check if a session exists.
|
||||
|
||||
:param session_id: id of session to check for
|
||||
:return: response with result if session was found
|
||||
"""
|
||||
request = core_pb2.CheckSessionRequest(session_id=session_id)
|
||||
return self.stub.CheckSession(request)
|
||||
|
||||
def get_session(self, session_id: int) -> core_pb2.GetSessionResponse:
|
||||
"""
|
||||
Retrieve a session.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue