diff options
author | Piotr Szarmanski | 2022-12-30 09:00:15 +0100 |
---|---|---|
committer | Piotr Szarmanski | 2022-12-30 09:00:15 +0100 |
commit | 855e79b7ffa37ac64de51defa18104ed897576b3 (patch) | |
tree | a5dea5b592e40c20308d428e489bc57eb3c7cdda /src/backend.lisp | |
parent | 618ee634557122b3b3c5012405603b28c0001d13 (diff) |
Initial buffer reuse encoding commit
Diffstat (limited to 'src/backend.lisp')
-rw-r--r-- | src/backend.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend.lisp b/src/backend.lisp index 9bb00d0..0230b24 100644 --- a/src/backend.lisp +++ b/src/backend.lisp @@ -22,7 +22,7 @@ (defclass decoding-backend () ((fetch-function :type function))) -(defgeneric fetch-read-capability (read-capability backend &key &allow-other-keys) +(defgeneric fetch-data (read-capability backend &key &allow-other-keys) (:documentation "Using the BACKEND, return a stream that decodes the provided READ-CAPABILITY object.")) |