summaryrefslogtreecommitdiff
path: root/dispatch.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-23 11:31:53 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-23 11:31:53 -0400
commitbe4883722f00ac71d4586f2e80557fd2ba055d24 (patch)
treef0779d25dca30811a5344dc2ee4fcb6487f2639c /dispatch.ts
parent602ee0d5a1b092faf8f29cac0727a28640aac0b0 (diff)
Rename sendMsgFromObject to sendMsg
Diffstat (limited to 'dispatch.ts')
-rw-r--r--dispatch.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/dispatch.ts b/dispatch.ts
index 859792b74..c2a7a6ef7 100644
--- a/dispatch.ts
+++ b/dispatch.ts
@@ -26,10 +26,7 @@ export function pub(channel: string, payload: Uint8Array): null | ArrayBuffer {
// Internal version of "pub".
// TODO add internal version of "sub"
// TODO rename to pubInternal()
-export function sendMsgFromObject(
- channel: string,
- obj: pb.IMsg
-): null | pb.Msg {
+export function sendMsg(channel: string, obj: pb.IMsg): null | pb.Msg {
const msg = pb.Msg.fromObject(obj);
const ui8 = pb.Msg.encode(msg).finish();
const resBuf = pub(channel, ui8);