mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-20 12:24:54 +00:00
ref[JS]: js protocol
This commit is contained in:
@@ -92,7 +92,7 @@ namespace zfoocs
|
||||
throw new Exception("writeIndex[" + writeIndex + "] out of bounds exception: readOffset: " +
|
||||
readOffset +
|
||||
", writeOffset: " + writeOffset +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length) + ")";
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length + ")");
|
||||
}
|
||||
writeOffset = writeIndex;
|
||||
}
|
||||
@@ -108,7 +108,7 @@ namespace zfoocs
|
||||
{
|
||||
throw new Exception("readIndex[" + readIndex + "] out of bounds exception: readIndex: " + readOffset +
|
||||
", writeOffset: " + writeOffset +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length) + ")";
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length + ")");
|
||||
}
|
||||
readOffset = readIndex;
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ const ByteBuffer = function() {
|
||||
if (writeIndex > this.buffer.byteLength) {
|
||||
throw new Error('writeIndex out of bounds exception: readOffset: ' + this.readOffset +
|
||||
', writeOffset: ' + this.writeOffset +
|
||||
'(expected: 0 <= readOffset <= writeOffset <= capacity:' + this.buffer.byteLength) + ')';
|
||||
'(expected: 0 <= readOffset <= writeOffset <= capacity:' + this.buffer.byteLength + ')');
|
||||
}
|
||||
this.writeOffset = writeIndex;
|
||||
};
|
||||
|
||||
@@ -123,7 +123,7 @@ namespace zfoo {
|
||||
"writeIndex[" + std::to_string(writeIndex) + "] out of bounds exception: readOffset: " +
|
||||
std::to_string(readOffset) +
|
||||
", writeOffset: " + std::to_string(writeOffset) +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + std::to_string(max_capacity);
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + std::to_string(max_capacity) + ")";
|
||||
throw errorMessage;
|
||||
}
|
||||
writeOffset = writeIndex;
|
||||
@@ -135,7 +135,7 @@ namespace zfoo {
|
||||
"readIndex[" + std::to_string(readIndex) + "] out of bounds exception: readOffset: " +
|
||||
std::to_string(readOffset) +
|
||||
", writeOffset: " + std::to_string(writeOffset) +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + std::to_string(max_capacity);
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + std::to_string(max_capacity) + ")";
|
||||
throw errorMessage;
|
||||
}
|
||||
readOffset = readIndex;
|
||||
|
||||
@@ -92,7 +92,7 @@ namespace zfoocs
|
||||
throw new Exception("writeIndex[" + writeIndex + "] out of bounds exception: readOffset: " +
|
||||
readOffset +
|
||||
", writeOffset: " + writeOffset +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length);
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length + ")");
|
||||
}
|
||||
writeOffset = writeIndex;
|
||||
}
|
||||
@@ -108,7 +108,7 @@ namespace zfoocs
|
||||
{
|
||||
throw new Exception("readIndex[" + readIndex + "] out of bounds exception: readIndex: " + readOffset +
|
||||
", writeOffset: " + writeOffset +
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length);
|
||||
"(expected: 0 <= readOffset <= writeOffset <= capacity:" + buffer.Length + ")");
|
||||
}
|
||||
readOffset = readIndex;
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ const ByteBuffer = function() {
|
||||
if (writeIndex > this.buffer.byteLength) {
|
||||
throw new Error('writeIndex out of bounds exception: readOffset: ' + this.readOffset +
|
||||
', writeOffset: ' + this.writeOffset +
|
||||
'(expected: 0 <= readOffset <= writeOffset <= capacity:' + this.buffer.byteLength) + ')';
|
||||
'(expected: 0 <= readOffset <= writeOffset <= capacity:' + this.buffer.byteLength + ')');
|
||||
}
|
||||
this.writeOffset = writeIndex;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user