Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Control offset from extension. #273

Open
crazylexa opened this issue Mar 27, 2025 · 0 comments
Open

Control offset from extension. #273

crazylexa opened this issue Mar 27, 2025 · 0 comments

Comments

@crazylexa
Copy link

Hi.
It isn't issue but suggestion\question.

I want to have custom implementation of array container deserialization (without legth) (server optimization proposes).
To implement it i want to have 2 extensions (e.g. 120 - array start [, and 121 - array end ]).
So Can i implement something similar? Can i controll offset of main buffer from extension?

Expectation example:

extensionCodec.register({
  type: 121,
  decode: (data: Uint8Array) => {
    return {arrayEnd : true};
  },
});
extensionCodec.register({
  type: 120,
  decode: (data: Uint8Array) => {
    const arr = [];
    while(true) {
       let arrayElement = decode(data); // returns some obj with offset shift from main data buffer.
       if(arrayElement?.arrayEnd) break;
       arr.push(arrayElement);
    } 
    return arr ;
  },
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant