Improve cold start performance

This commit is contained in:
Josh Perez 2021-03-04 16:44:57 -05:00 committed by Josh Perez
parent c73e35b1b6
commit d82ce07942
39 changed files with 911 additions and 628 deletions

3
ts/textsecure.d.ts vendored
View file

@ -23,6 +23,7 @@ export type UnprocessedType = {
decrypted?: string;
envelope?: string;
id: string;
timestamp: number;
serverTimestamp?: number;
source?: string;
sourceDevice?: number;
@ -795,6 +796,8 @@ export declare class EnvelopeClass {
// Note: these additional properties are added in the course of processing
id: string;
receivedAtCounter: number;
receivedAtDate: number;
unidentifiedDeliveryReceived?: boolean;
messageAgeSec?: number;
}