node-opcua-packet-assembler 2.120.0 → 2.121.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.
|
@@ -31,7 +31,7 @@ export interface PacketAssembler {
|
|
|
31
31
|
on(eventName: "error", eventHandler: (err: Error, errCode: PacketAssemblerErrorCode) => void): this;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* this class is used to assemble partial data from the
|
|
34
|
+
* this class is used to assemble partial data from the transport layer
|
|
35
35
|
* into message chunks
|
|
36
36
|
*/
|
|
37
37
|
export declare class PacketAssembler extends EventEmitter {
|
package/dist/packet_assembler.js
CHANGED
|
@@ -12,7 +12,7 @@ var PacketAssemblerErrorCode;
|
|
|
12
12
|
PacketAssemblerErrorCode[PacketAssemblerErrorCode["ChunkTooSmall"] = 2] = "ChunkTooSmall";
|
|
13
13
|
})(PacketAssemblerErrorCode || (exports.PacketAssemblerErrorCode = PacketAssemblerErrorCode = {}));
|
|
14
14
|
/**
|
|
15
|
-
* this class is used to assemble partial data from the
|
|
15
|
+
* this class is used to assemble partial data from the transport layer
|
|
16
16
|
* into message chunks
|
|
17
17
|
*/
|
|
18
18
|
class PacketAssembler extends events_1.EventEmitter {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-packet-assembler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.121.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module packet-assembler",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"node-opcua-assert": "2.120.0",
|
|
16
|
-
"node-opcua-debug": "2.
|
|
16
|
+
"node-opcua-debug": "2.121.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"should": "^13.2.3",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"internet of things"
|
|
33
33
|
],
|
|
34
34
|
"homepage": "http://node-opcua.github.io/",
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "ba93a78eda343ecc0cc20476837347f6dfa259e0",
|
|
36
36
|
"files": [
|
|
37
37
|
"dist",
|
|
38
38
|
"source"
|
|
@@ -41,7 +41,7 @@ export interface PacketAssembler {
|
|
|
41
41
|
on(eventName: "error", eventHandler: (err: Error, errCode: PacketAssemblerErrorCode) => void): this;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* this class is used to assemble partial data from the
|
|
44
|
+
* this class is used to assemble partial data from the transport layer
|
|
45
45
|
* into message chunks
|
|
46
46
|
*/
|
|
47
47
|
export class PacketAssembler extends EventEmitter {
|