280
280
:return: False if the server should terminate, otherwise None.
282
282
req_args = self._recv_tuple()
285
284
# client closed connection
286
285
return False # shutdown server
288
287
response = self.smart_server.dispatch_command(req_args[0], req_args[1:])
290
288
self._send_tuple(response.args)
291
289
if response.body is not None:
292
290
self._send_bulk_data(response.body)