@resolveio/client-lib-core 15.4.2 → 15.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,6 +19,8 @@ export declare class SocketManagerService {
|
|
|
19
19
|
private _pendingMessages;
|
|
20
20
|
private _sendTimeout;
|
|
21
21
|
private _currentLockId;
|
|
22
|
+
private _chunkAssemblies;
|
|
23
|
+
private readonly _chunkTextDecoder;
|
|
22
24
|
private _connectionDelayTimeout;
|
|
23
25
|
onerror: () => void;
|
|
24
26
|
constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router, _token: TokenManagerService);
|
|
@@ -30,6 +32,15 @@ export declare class SocketManagerService {
|
|
|
30
32
|
private releaseLock;
|
|
31
33
|
private generateUniqueId;
|
|
32
34
|
private processReceivedMessage;
|
|
35
|
+
private handleChunkedPayload;
|
|
36
|
+
private createChunkAssembly;
|
|
37
|
+
private appendChunkPayload;
|
|
38
|
+
private emitChunkProgress;
|
|
39
|
+
private handleChunkFailure;
|
|
40
|
+
private tryDecodeChunkBuffer;
|
|
41
|
+
private extractChunkBytes;
|
|
42
|
+
private ensureUint8Array;
|
|
43
|
+
private base64ToUint8Array;
|
|
33
44
|
openSocket(environment: any, protocols: any): void;
|
|
34
45
|
closeSocket(): void;
|
|
35
46
|
call(method: string, ...parameters: any[]): Promise<unknown>;
|
package/package.json
CHANGED