From d466f2e7764cfe29202bc4a7ac77a1de6df0b6a2 Mon Sep 17 00:00:00 2001 From: "thomashii@dukefirehawk.com" Date: Tue, 12 Dec 2023 10:30:48 +0800 Subject: [PATCH] Added comments --- packages/pub_sub/lib/src/isolate/shared.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/pub_sub/lib/src/isolate/shared.dart b/packages/pub_sub/lib/src/isolate/shared.dart index d8f1728..9751b81 100644 --- a/packages/pub_sub/lib/src/isolate/shared.dart +++ b/packages/pub_sub/lib/src/isolate/shared.dart @@ -1,3 +1,5 @@ +/// A message handler class that handles the encoding/decoding of messages send +/// between isolate [Client] and [Server]. class MessageHandler { static const _requestId = 'request_id'; static const _method = 'method';