Skip to content

Commit 55c13e8

Browse files
authored
Adressing feedback from upstream sync (#27)
* Adressing feedback from upstream sync - clarified comment on `topic` function. - added portability comment onto `metadata` to avoid it being used as an escape-hatch. - removed `get-topics` func in favour of using wasi-config for runtime configuration. * [chore] update markdown files Signed-off-by: danbugs <[email protected]> --------- Signed-off-by: danbugs <[email protected]>
1 parent 8f63bd5 commit 55c13e8

6 files changed

+15
-34
lines changed

imports-request-reply.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ This allows the component to perform request/reply messaging patterns.</p>
7373
<li><a id="constructor_message.0"></a> own&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
7474
</ul>
7575
<h4><a id="method_message_topic"></a><code>[method]message.topic: func</code></h4>
76-
<p>The topic/subject/channel this message was received or should be sent on</p>
76+
<p>The topic/subject/channel this message was received on</p>
7777
<h5>Params</h5>
7878
<ul>
7979
<li><a id="method_message_topic.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -120,7 +120,8 @@ sometimes described as the &quot;format&quot; type</p>
120120
</ul>
121121
<h4><a id="method_message_metadata"></a><code>[method]message.metadata: func</code></h4>
122122
<p>Optional metadata (also called headers or attributes in some systems) attached to the
123-
message</p>
123+
message. This metadata is simply decoration and should not be interpreted by a host
124+
to ensure portability across different implementors (e.g., Kafka -&gt; NATS, etc.).</p>
124125
<h5>Params</h5>
125126
<ul>
126127
<li><a id="method_message_metadata.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>

imports.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ It includes the <code>producer</code> interface for sending messages.</p>
7272
<li><a id="constructor_message.0"></a> own&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
7373
</ul>
7474
<h4><a id="method_message_topic"></a><code>[method]message.topic: func</code></h4>
75-
<p>The topic/subject/channel this message was received or should be sent on</p>
75+
<p>The topic/subject/channel this message was received on</p>
7676
<h5>Params</h5>
7777
<ul>
7878
<li><a id="method_message_topic.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -119,7 +119,8 @@ sometimes described as the &quot;format&quot; type</p>
119119
</ul>
120120
<h4><a id="method_message_metadata"></a><code>[method]message.metadata: func</code></h4>
121121
<p>Optional metadata (also called headers or attributes in some systems) attached to the
122-
message</p>
122+
message. This metadata is simply decoration and should not be interpreted by a host
123+
to ensure portability across different implementors (e.g., Kafka -&gt; NATS, etc.).</p>
123124
<h5>Params</h5>
124125
<ul>
125126
<li><a id="method_message_metadata.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>

messaging-core.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ enabling the component to handle incoming messages without request/reply capabil
7777
<li><a id="constructor_message.0"></a> own&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
7878
</ul>
7979
<h4><a id="method_message_topic"></a><code>[method]message.topic: func</code></h4>
80-
<p>The topic/subject/channel this message was received or should be sent on</p>
80+
<p>The topic/subject/channel this message was received on</p>
8181
<h5>Params</h5>
8282
<ul>
8383
<li><a id="method_message_topic.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -124,7 +124,8 @@ sometimes described as the &quot;format&quot; type</p>
124124
</ul>
125125
<h4><a id="method_message_metadata"></a><code>[method]message.metadata: func</code></h4>
126126
<p>Optional metadata (also called headers or attributes in some systems) attached to the
127-
message</p>
127+
message. This metadata is simply decoration and should not be interpreted by a host
128+
to ensure portability across different implementors (e.g., Kafka -&gt; NATS, etc.).</p>
128129
<h5>Params</h5>
129130
<ul>
130131
<li><a id="method_message_metadata.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -212,12 +213,3 @@ own decisions on how to handle errors returned from this function.</p>
212213
<ul>
213214
<li><a id="handle.0"></a> result&lt;_, <a href="#error"><a href="#error"><code>error</code></a></a>&gt;</li>
214215
</ul>
215-
<h4><a id="get_topics"></a><code>get-topics: func</code></h4>
216-
<p>Returns a list of topics (represented as <code>string</code>s) at runtime the guest should be subscribed
217-
Implementors should consider also allowing subscriptions to be made at compile time
218-
via some sort of configuration file. This function is intended to be called at the start of the
219-
guest's lifecycle before any messages are sent.</p>
220-
<h5>Return values</h5>
221-
<ul>
222-
<li><a id="get_topics.0"></a> result&lt;list&lt;<a href="#topic"><a href="#topic"><code>topic</code></a></a>&gt;, <a href="#error"><a href="#error"><code>error</code></a></a>&gt;</li>
223-
</ul>

messaging-request-reply.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ handling incoming messages with request/reply capabilities.</p>
7979
<li><a id="constructor_message.0"></a> own&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
8080
</ul>
8181
<h4><a id="method_message_topic"></a><code>[method]message.topic: func</code></h4>
82-
<p>The topic/subject/channel this message was received or should be sent on</p>
82+
<p>The topic/subject/channel this message was received on</p>
8383
<h5>Params</h5>
8484
<ul>
8585
<li><a id="method_message_topic.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -126,7 +126,8 @@ sometimes described as the &quot;format&quot; type</p>
126126
</ul>
127127
<h4><a id="method_message_metadata"></a><code>[method]message.metadata: func</code></h4>
128128
<p>Optional metadata (also called headers or attributes in some systems) attached to the
129-
message</p>
129+
message. This metadata is simply decoration and should not be interpreted by a host
130+
to ensure portability across different implementors (e.g., Kafka -&gt; NATS, etc.).</p>
130131
<h5>Params</h5>
131132
<ul>
132133
<li><a id="method_message_metadata.self"></a><code>self</code>: borrow&lt;<a href="#message"><a href="#message"><code>message</code></a></a>&gt;</li>
@@ -296,12 +297,3 @@ own decisions on how to handle errors returned from this function.</p>
296297
<ul>
297298
<li><a id="handle.0"></a> result&lt;_, <a href="#error"><a href="#error"><code>error</code></a></a>&gt;</li>
298299
</ul>
299-
<h4><a id="get_topics"></a><code>get-topics: func</code></h4>
300-
<p>Returns a list of topics (represented as <code>string</code>s) at runtime the guest should be subscribed
301-
Implementors should consider also allowing subscriptions to be made at compile time
302-
via some sort of configuration file. This function is intended to be called at the start of the
303-
guest's lifecycle before any messages are sent.</p>
304-
<h5>Return values</h5>
305-
<ul>
306-
<li><a id="get_topics.0"></a> result&lt;list&lt;<a href="#topic"><a href="#topic"><code>topic</code></a></a>&gt;, <a href="#error"><a href="#error"><code>error</code></a></a>&gt;</li>
307-
</ul>

wit/guest.wit

-6
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,4 @@ interface incoming-handler {
66
/// message accordingly. Implementors (such as hosts) calling this interface should make their
77
/// own decisions on how to handle errors returned from this function.
88
handle: func(message: message) -> result<_, error>;
9-
10-
// Returns a list of topics (represented as `string`s) at runtime the guest should be subscribed
11-
// Implementors should consider also allowing subscriptions to be made at compile time
12-
// via some sort of configuration file. This function is intended to be called at the start of the
13-
// guest's lifecycle before any messages are sent.
14-
get-topics: func() -> result<list<topic>, error>;
159
}

wit/types.wit

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface types {
2626
/// A message with a binary payload and additional information
2727
resource message {
2828
constructor(data: list<u8>);
29-
/// The topic/subject/channel this message was received or should be sent on
29+
/// The topic/subject/channel this message was received on
3030
topic: func() -> topic;
3131
/// An optional content-type describing the format of the data in the message. This is
3232
/// sometimes described as the "format" type
@@ -39,7 +39,8 @@ interface types {
3939
/// Set the opaque blob of data for this message, discarding the old value
4040
set-data: func(data: list<u8>);
4141
/// Optional metadata (also called headers or attributes in some systems) attached to the
42-
/// message
42+
/// message. This metadata is simply decoration and should not be interpreted by a host
43+
/// to ensure portability across different implementors (e.g., Kafka -> NATS, etc.).
4344
metadata: func() -> option<metadata>;
4445
/// Add a new key-value pair to the metadata, overwriting any existing value for the same key
4546
add-metadata: func(key: string, value: string);

0 commit comments

Comments
 (0)