*make syncing async
This commit is contained in:
parent
6cb9fd8283
commit
5907966d77
26
index.js
26
index.js
|
@ -50,7 +50,7 @@ class Channel {
|
||||||
for (const m of messages) this.addMessage(m);
|
for (const m of messages) this.addMessage(m);
|
||||||
}
|
}
|
||||||
|
|
||||||
open(handshake) {
|
async open(handshake) {
|
||||||
const id =
|
const id =
|
||||||
this._mux._free.length > 0
|
this._mux._free.length > 0
|
||||||
? this._mux._free.pop()
|
? this._mux._free.pop()
|
||||||
|
@ -81,7 +81,7 @@ class Channel {
|
||||||
if (this._handshake) this._handshake.encode(state, handshake);
|
if (this._handshake) this._handshake.encode(state, handshake);
|
||||||
|
|
||||||
this._mux._write0(state.buffer);
|
this._mux._write0(state.buffer);
|
||||||
this.syncState?.();
|
await this.syncState?.();
|
||||||
}
|
}
|
||||||
|
|
||||||
_dec() {
|
_dec() {
|
||||||
|
@ -93,10 +93,10 @@ class Channel {
|
||||||
this._mux._safeDestroy(err);
|
this._mux._safeDestroy(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
_fullyOpenSoon() {
|
async _fullyOpenSoon() {
|
||||||
this._mux._remote[this._remoteId - 1].session = this;
|
this._mux._remote[this._remoteId - 1].session = this;
|
||||||
queueTick(this._fullyOpen.bind(this));
|
queueTick(this._fullyOpen.bind(this));
|
||||||
this.syncState?.();
|
await this.syncState?.();
|
||||||
}
|
}
|
||||||
|
|
||||||
_fullyOpen() {
|
_fullyOpen() {
|
||||||
|
@ -133,7 +133,7 @@ class Channel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_close(isRemote) {
|
async _close(isRemote) {
|
||||||
if (this.closed === true) return;
|
if (this.closed === true) return;
|
||||||
this.closed = true;
|
this.closed = true;
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@ class Channel {
|
||||||
this._track(this.onclose(isRemote, this));
|
this._track(this.onclose(isRemote, this));
|
||||||
|
|
||||||
if (this._active === 0) this._destroy();
|
if (this._active === 0) this._destroy();
|
||||||
this.syncState?.();
|
await this.syncState?.();
|
||||||
}
|
}
|
||||||
|
|
||||||
_destroy() {
|
_destroy() {
|
||||||
|
@ -177,7 +177,7 @@ class Channel {
|
||||||
this._mux.uncork();
|
this._mux.uncork();
|
||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
async close() {
|
||||||
if (this.closed === true) return;
|
if (this.closed === true) return;
|
||||||
|
|
||||||
const state = { buffer: null, start: 2, end: 2 };
|
const state = { buffer: null, start: 2, end: 2 };
|
||||||
|
@ -190,7 +190,7 @@ class Channel {
|
||||||
state.buffer[1] = 3;
|
state.buffer[1] = 3;
|
||||||
c.uint.encode(state, this._localId);
|
c.uint.encode(state, this._localId);
|
||||||
|
|
||||||
this._close(false);
|
await this._close(false);
|
||||||
this._mux._write0(state.buffer);
|
this._mux._write0(state.buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -493,11 +493,11 @@ module.exports = class Protomux {
|
||||||
this.stream.end();
|
this.stream.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
_decode(remoteId, state) {
|
async _decode(remoteId, state) {
|
||||||
const type = c.uint.decode(state);
|
const type = c.uint.decode(state);
|
||||||
|
|
||||||
if (remoteId === 0) {
|
if (remoteId === 0) {
|
||||||
this._oncontrolsession(type, state);
|
await this._oncontrolsession(type, state);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -512,11 +512,11 @@ module.exports = class Protomux {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.syncState?.();
|
await this.syncState?.();
|
||||||
r.session._recv(type, state);
|
r.session._recv(type, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
_oncontrolsession(type, state) {
|
async _oncontrolsession(type, state) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 0:
|
case 0:
|
||||||
this._onbatch(state);
|
this._onbatch(state);
|
||||||
|
@ -535,7 +535,7 @@ module.exports = class Protomux {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.syncState?.();
|
await this.syncState?.();
|
||||||
}
|
}
|
||||||
|
|
||||||
_bufferMessage(r, type, { buffer, start, end }) {
|
_bufferMessage(r, type, { buffer, start, end }) {
|
||||||
|
|
Reference in New Issue