TAKPacket-SDK — TypeScript - v0.7.0
    Preparing search index...

    Interface RemarksFallbackResult

    Result of TakCompressor.compressWithRemarksFallbackDetailed.

    wirePayload remarksStripped Meaning
    Buffer false Fit as-is, no stripping needed
    Buffer true Stripped remarks to make it fit
    null false Too big, had no remarks to strip
    null true Stripped remarks, still too big
    interface RemarksFallbackResult {
        remarksStripped: boolean;
        wirePayload: Buffer<ArrayBufferLike> | null;
    }
    Index

    Properties

    remarksStripped: boolean

    true if this call stripped the remarks field before compressing — either successfully (wirePayload is non-null) or unsuccessfully (wirePayload is null because even stripped it was too big).

    wirePayload: Buffer<ArrayBufferLike> | null

    The compressed wire bytes, or null if the packet should be dropped.