implemented chunked broadcast of updates

This commit is contained in:
Kevin Jahns
2017-09-26 21:52:07 +02:00
parent 0e3e561ec7
commit 4028eee39d
2 changed files with 17 additions and 3 deletions

View File

@@ -8,6 +8,10 @@ export class BinaryEncoder {
this.data = []
}
get length () {
return this.data.length
}
get pos () {
return this.data.length
}