Method
__init__
(self, connection_pool, response_callbacks, transaction, buffer_size,
shard_hint=None)
Source from the content-addressed store, hash-verified
| 887 | ''' |
| 888 | |
| 889 | def __init__(self, connection_pool, response_callbacks, transaction, buffer_size, |
| 890 | shard_hint=None): |
| 891 | self._buffer_size = buffer_size |
| 892 | super(RedisBuffer, self).__init__( |
| 893 | connection_pool, response_callbacks, transaction, |
| 894 | shard_hint=shard_hint) |
| 895 | |
| 896 | @property |
| 897 | def buffer_size(self): |
Tested by
no test coverage detected