Get the entire queuee.
(self, parent_span: Optional[WrappedSpan] = None)
| 915 | raise |
| 916 | |
| 917 | def _get(self, parent_span: Optional[WrappedSpan] = None) -> List: |
| 918 | """ |
| 919 | Get the entire queuee. |
| 920 | """ |
| 921 | op_type = KeyValueOperationType.Get |
| 922 | with ObservableRequestHandler(op_type, self._impl.observability_instruments) as obs_handler: |
| 923 | req, transcoder = self._impl.request_builder.build_get_request(self._key, |
| 924 | obs_handler, |
| 925 | parent_span=parent_span) |
| 926 | return self._execute_op(self._impl.get, |
| 927 | req, |
| 928 | obs_handler, |
| 929 | parent_span=parent_span, |
| 930 | create_type=True, |
| 931 | transcoder=transcoder) |
| 932 | |
| 933 | def push(self, value: JSONType) -> None: |
| 934 | """Adds a new item to the back of the queue. |
no test coverage detected