| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # Copyright 2014-2015 MongoDB, Inc.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """Represent a response from the server."""
- class Response(object):
- __slots__ = ('_data', '_address')
- def __init__(self, data, address):
- """Represent a response from the server.
- :Parameters:
- - `data`: Raw BSON bytes.
- - `address`: (host, port) of the source server.
- """
- self._data = data
- self._address = address
- @property
- def data(self):
- """Server response's raw BSON bytes."""
- return self._data
- @property
- def address(self):
- """(host, port) of the source server."""
- return self._address
- class ExhaustResponse(Response):
- __slots__ = ('_socket_info', '_pool')
- def __init__(self, data, address, socket_info, pool):
- """Represent a response to an exhaust cursor's initial query.
- :Parameters:
- - `data`: Raw BSON bytes.
- - `address`: (host, port) of the source server.
- - `socket_info`: The SocketInfo used for the initial query.
- - `pool`: The Pool from which the SocketInfo came.
- """
- super(ExhaustResponse, self).__init__(data, address)
- self._socket_info = socket_info
- self._pool = pool
- @property
- def socket_info(self):
- """The SocketInfo used for the initial query.
- The server will send batches on this socket, without waiting for
- getMores from the client, until the result set is exhausted or there
- is an error.
- """
- return self._socket_info
- @property
- def pool(self):
- """The Pool from which the SocketInfo came."""
- return self._pool
|