From dc3bb4b3d13ef3f37107624e86538c5bbdc5c110 Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Thu, 16 Jul 2020 12:23:42 +0400 Subject: [PATCH] Add multicast support to BaseMessage model --- protocol-spec/core.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/protocol-spec/core.md b/protocol-spec/core.md index 3cadefb..c4ee47a 100644 --- a/protocol-spec/core.md +++ b/protocol-spec/core.md @@ -54,15 +54,16 @@ interface BaseMessage { * Type of message (used to determine which extension this message belongs to) */ type: string, + /** * From which entity this message is send */ from: EntityID, /** - * Message recipient + * Message recipients */ - to: EntityID, + toAddresses: EntityID[], /** * Operation success indicator (used to determine if the error happened while processing request) - MUST be only in response from server