Get the entire queuee.
(self, parent_span: Optional[WrappedSpan] = None)
| 925 | raise |
| 926 | |
| 927 | async def _get(self, parent_span: Optional[WrappedSpan] = None) -> List: |
| 928 | """ |
| 929 | Get the entire queuee. |
| 930 | """ |
| 931 | op_type = KeyValueOperationType.Get |
| 932 | async with ObservableRequestHandler(op_type, self._impl.observability_instruments) as obs_handler: |
| 933 | req, transcoder = self._impl.request_builder.build_get_request(self._key, |
| 934 | obs_handler, |
| 935 | parent_span=parent_span) |
| 936 | return await self._execute_op(self._impl.get, |
| 937 | req, |
| 938 | obs_handler, |
| 939 | parent_span, |
| 940 | create_type=True, |
| 941 | transcoder=transcoder) |
| 942 | |
| 943 | async def push(self, value: JSONType) -> None: |
| 944 | """ |
no test coverage detected