grpc: removed set/get sessopm options, removed get session metadata/location, can be done with get/start session

This commit is contained in:
Blake Harnden 2021-04-24 22:10:28 -07:00
parent d4c008e564
commit d8a3f9e78c
6 changed files with 2 additions and 265 deletions

View file

@ -407,18 +407,6 @@ class CoreGrpcClient:
response = self.stub.GetSession(request)
return wrappers.Session.from_proto(response.session)
def get_session_metadata(self, session_id: int) -> Dict[str, str]:
"""
Retrieve session metadata as a dict with id mapping.
:param session_id: id of session
:return: response with metadata dict
:raises grpc.RpcError: when session doesn't exist
"""
request = core_pb2.GetSessionMetadataRequest(session_id=session_id)
response = self.stub.GetSessionMetadata(request)
return dict(response.config)
def set_session_metadata(self, session_id: int, config: Dict[str, str]) -> bool:
"""
Set metadata for a session.
@ -434,18 +422,6 @@ class CoreGrpcClient:
response = self.stub.SetSessionMetadata(request)
return response.result
def get_session_location(self, session_id: int) -> wrappers.SessionLocation:
"""
Get session location.
:param session_id: id of session
:return: response with session position reference and scale
:raises grpc.RpcError: when session doesn't exist
"""
request = core_pb2.GetSessionLocationRequest(session_id=session_id)
response = self.stub.GetSessionLocation(request)
return wrappers.SessionLocation.from_proto(response.location)
def set_session_location(
self, session_id: int, location: wrappers.SessionLocation
) -> bool: