mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-08-13 02:05:20 +00:00
9 lines
243 B
Python
9 lines
243 B
Python
|
|
||
|
class SearpcTransport(object):
|
||
|
"""
|
||
|
A transport is repsonsible to send the serialized request to the
|
||
|
server, and get back the raw response from the server.
|
||
|
"""
|
||
|
def send(self, request_str):
|
||
|
raise NotImplementedError
|