Skip to content

Commit f50fd07

Browse files
author
Rafał Maciąg
committed
docs
1 parent 0092c75 commit f50fd07

File tree

57 files changed

+5036
-955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+5036
-955
lines changed

_site/api/MicroPlumberd.AggregateBase-2.html

+505
Large diffs are not rendered by default.

_site/api/MicroPlumberd.DirectConnect.CommandEnvelope-1.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ <h3 id="MicroPlumberd_DirectConnect_CommandEnvelope_1_StreamId" data-uid="MicroP
271271

272272
<div class="codewrapper">
273273
<pre><code class="lang-csharp hljs">[ProtoMember(1)]
274-
public Guid StreamId { get; init; }</code></pre>
274+
public string StreamId { get; init; }</code></pre>
275275
</div>
276276

277277

@@ -280,7 +280,7 @@ <h3 id="MicroPlumberd_DirectConnect_CommandEnvelope_1_StreamId" data-uid="MicroP
280280

281281
<h4 class="section">Property Value</h4>
282282
<dl class="parameters">
283-
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.guid">Guid</a></dt>
283+
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
284284
<dd></dd>
285285
</dl>
286286

_site/api/MicroPlumberd.IAggregate-1.html

+10-14
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
8989

9090

9191
<h1 id="MicroPlumberd_IAggregate_1" data-uid="MicroPlumberd.IAggregate`1" class="text-break">
92-
Interface IAggregate&lt;TSelf&gt; <a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L99"><i class="bi bi-code-slash"></i></a>
92+
Interface IAggregate&lt;TSelf&gt; <a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L148"><i class="bi bi-code-slash"></i></a>
9393
</h1>
9494

9595
<div class="facts text-secondary">
@@ -102,7 +102,7 @@ <h1 id="MicroPlumberd_IAggregate_1" data-uid="MicroPlumberd.IAggregate`1" class=
102102
<div class="markdown conceptual"></div>
103103

104104
<div class="codewrapper">
105-
<pre><code class="lang-csharp hljs">public interface IAggregate&lt;out TSelf&gt; : IAggregate, IId, IVersioned</code></pre>
105+
<pre><code class="lang-csharp hljs">public interface IAggregate&lt;out TSelf&gt; : IAggregate, IVersioned</code></pre>
106106
</div>
107107

108108

@@ -129,9 +129,6 @@ <h4 class="section">Type Parameters</h4>
129129
<div>
130130
<a class="xref" href="MicroPlumberd.IAggregate.html#MicroPlumberd_IAggregate_AckCommitted">IAggregate.AckCommitted()</a>
131131
</div>
132-
<div>
133-
<a class="xref" href="MicroPlumberd.IId.html#MicroPlumberd_IId_Id">IId.Id</a>
134-
</div>
135132
<div>
136133
<a class="xref" href="MicroPlumberd.IVersioned.html#MicroPlumberd_IVersioned_Version">IVersioned.Version</a>
137134
</div>
@@ -146,24 +143,24 @@ <h2 class="section" id="methods">Methods
146143
</h2>
147144

148145

149-
<a id="MicroPlumberd_IAggregate_1_New_" data-uid="MicroPlumberd.IAggregate`1.New*"></a>
146+
<a id="MicroPlumberd_IAggregate_1_Empty_" data-uid="MicroPlumberd.IAggregate`1.Empty*"></a>
150147

151-
<h3 id="MicroPlumberd_IAggregate_1_New_System_Guid_" data-uid="MicroPlumberd.IAggregate`1.New(System.Guid)">
152-
New(Guid)
153-
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L106"><i class="bi bi-code-slash"></i></a>
148+
<h3 id="MicroPlumberd_IAggregate_1_Empty_System_Object_" data-uid="MicroPlumberd.IAggregate`1.Empty(System.Object)">
149+
Empty(object)
150+
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L155"><i class="bi bi-code-slash"></i></a>
154151
</h3>
155152

156-
<div class="markdown level1 summary"><p>Factory method to create new Aggregates based on Guids.</p>
153+
<div class="markdown level1 summary"><p>Factory method to create new Aggregates based on identifiers.</p>
157154
</div>
158155
<div class="markdown level1 conceptual"></div>
159156

160157
<div class="codewrapper">
161-
<pre><code class="lang-csharp hljs">public static abstract TSelf New(Guid id)</code></pre>
158+
<pre><code class="lang-csharp hljs">public static abstract TSelf Empty(object id)</code></pre>
162159
</div>
163160

164161
<h4 class="section">Parameters</h4>
165162
<dl class="parameters">
166-
<dt><code>id</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.guid">Guid</a></dt>
163+
<dt><code>id</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></dt>
167164
<dd><p>The identifier.</p>
168165
</dd>
169166
</dl>
@@ -186,14 +183,13 @@ <h4 class="section">Returns</h4>
186183

187184
<h2 id="seealso">See Also</h2>
188185
<div class="seealso">
189-
<div><a class="xref" href="MicroPlumberd.IId.html">IId</a></div>
190186
<div><a class="xref" href="MicroPlumberd.IVersioned.html">IVersioned</a></div>
191187
</div>
192188

193189
</article>
194190

195191
<div class="contribution d-print-none">
196-
<a href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L99" class="edit-link">Edit this page</a>
192+
<a href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L148" class="edit-link">Edit this page</a>
197193
</div>
198194

199195

_site/api/MicroPlumberd.IAggregate.html

+6-9
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ <h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
8989

9090

9191
<h1 id="MicroPlumberd_IAggregate" data-uid="MicroPlumberd.IAggregate" class="text-break">
92-
Interface IAggregate <a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L36"><i class="bi bi-code-slash"></i></a>
92+
Interface IAggregate <a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L39"><i class="bi bi-code-slash"></i></a>
9393
</h1>
9494

9595
<div class="facts text-secondary">
@@ -102,7 +102,7 @@ <h1 id="MicroPlumberd_IAggregate" data-uid="MicroPlumberd.IAggregate" class="tex
102102
<div class="markdown conceptual"></div>
103103

104104
<div class="codewrapper">
105-
<pre><code class="lang-csharp hljs">public interface IAggregate : IId, IVersioned</code></pre>
105+
<pre><code class="lang-csharp hljs">public interface IAggregate : IVersioned</code></pre>
106106
</div>
107107

108108

@@ -114,9 +114,6 @@ <h1 id="MicroPlumberd_IAggregate" data-uid="MicroPlumberd.IAggregate" class="tex
114114
<dl class="typelist inheritedMembers">
115115
<dt>Inherited Members</dt>
116116
<dd>
117-
<div>
118-
<a class="xref" href="MicroPlumberd.IId.html#MicroPlumberd_IId_Id">IId.Id</a>
119-
</div>
120117
<div>
121118
<a class="xref" href="MicroPlumberd.IVersioned.html#MicroPlumberd_IVersioned_Version">IVersioned.Version</a>
122119
</div>
@@ -135,7 +132,7 @@ <h2 class="section" id="properties">Properties
135132

136133
<h3 id="MicroPlumberd_IAggregate_PendingEvents" data-uid="MicroPlumberd.IAggregate.PendingEvents">
137134
PendingEvents
138-
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L44"><i class="bi bi-code-slash"></i></a>
135+
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L47"><i class="bi bi-code-slash"></i></a>
139136
</h3>
140137

141138
<div class="markdown level1 summary"><p>Pending events.</p>
@@ -172,7 +169,7 @@ <h2 class="section" id="methods">Methods
172169

173170
<h3 id="MicroPlumberd_IAggregate_AckCommitted" data-uid="MicroPlumberd.IAggregate.AckCommitted">
174171
AckCommitted()
175-
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L56"><i class="bi bi-code-slash"></i></a>
172+
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L59"><i class="bi bi-code-slash"></i></a>
176173
</h3>
177174

178175
<div class="markdown level1 summary"><p>Is used when all pending events are saved in eventstore.</p>
@@ -199,7 +196,7 @@ <h3 id="MicroPlumberd_IAggregate_AckCommitted" data-uid="MicroPlumberd.IAggregat
199196

200197
<h3 id="MicroPlumberd_IAggregate_Rehydrate_System_Collections_Generic_IAsyncEnumerable_System_Object__" data-uid="MicroPlumberd.IAggregate.Rehydrate(System.Collections.Generic.IAsyncEnumerable{System.Object})">
201198
Rehydrate(IAsyncEnumerable&lt;object&gt;)
202-
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L51"><i class="bi bi-code-slash"></i></a>
199+
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L54"><i class="bi bi-code-slash"></i></a>
203200
</h3>
204201

205202
<div class="markdown level1 summary"><p>Rehydrates aggregate with specified events.</p>
@@ -242,7 +239,7 @@ <h2 id="seealso">See Also</h2>
242239
</article>
243240

244241
<div class="contribution d-print-none">
245-
<a href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L36" class="edit-link">Edit this page</a>
242+
<a href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L39" class="edit-link">Edit this page</a>
246243
</div>
247244

248245

_site/api/MicroPlumberd.ICommandBus.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ <h2 class="section" id="methods">Methods
123123

124124
<a id="MicroPlumberd_ICommandBus_SendAsync_" data-uid="MicroPlumberd.ICommandBus.SendAsync*"></a>
125125

126-
<h3 id="MicroPlumberd_ICommandBus_SendAsync_System_Guid_System_Object_" data-uid="MicroPlumberd.ICommandBus.SendAsync(System.Guid,System.Object)">
127-
SendAsync(Guid, object)
126+
<h3 id="MicroPlumberd_ICommandBus_SendAsync_System_Object_System_Object_" data-uid="MicroPlumberd.ICommandBus.SendAsync(System.Object,System.Object)">
127+
SendAsync(object, object)
128128
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd.CommandBus.Abstractions/ICommandBus.cs/#L14"><i class="bi bi-code-slash"></i></a>
129129
</h3>
130130

@@ -133,12 +133,12 @@ <h3 id="MicroPlumberd_ICommandBus_SendAsync_System_Guid_System_Object_" data-uid
133133
<div class="markdown level1 conceptual"></div>
134134

135135
<div class="codewrapper">
136-
<pre><code class="lang-csharp hljs">Task SendAsync(Guid recipientId, object command)</code></pre>
136+
<pre><code class="lang-csharp hljs">Task SendAsync(object recipientId, object command)</code></pre>
137137
</div>
138138

139139
<h4 class="section">Parameters</h4>
140140
<dl class="parameters">
141-
<dt><code>recipientId</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.guid">Guid</a></dt>
141+
<dt><code>recipientId</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></dt>
142142
<dd><p>The ID of the recipient.</p>
143143
</dd>
144144
<dt><code>command</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></dt>

_site/api/MicroPlumberd.IId-1.html

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Interface IId&lt;T&gt; | MicroPlumberd </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="title" content="Interface IId&lt;T&gt; | MicroPlumberd ">
8+
9+
10+
<link rel="icon" href="../favicon.ico">
11+
<link rel="stylesheet" href="../public/docfx.min.css">
12+
<link rel="stylesheet" href="../public/main.css">
13+
<meta name="docfx:navrel" content="../toc.html">
14+
<meta name="docfx:tocrel" content="toc.html">
15+
16+
<meta name="docfx:rel" content="../">
17+
18+
19+
<meta name="docfx:docurl" content="https://github.com/modelingevolution/micro-plumberd/new/master/apiSpec/new?filename=MicroPlumberd_IId_1.md&amp;value=---%0Auid%3A%20MicroPlumberd.IId%601%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">
20+
<meta name="loc:inThisArticle" content="In this article">
21+
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
22+
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
23+
<meta name="loc:tocFilter" content="Filter by title">
24+
<meta name="loc:nextArticle" content="Next">
25+
<meta name="loc:prevArticle" content="Previous">
26+
<meta name="loc:themeLight" content="Light">
27+
<meta name="loc:themeDark" content="Dark">
28+
<meta name="loc:themeAuto" content="Auto">
29+
<meta name="loc:changeTheme" content="Change theme">
30+
<meta name="loc:copy" content="Copy">
31+
<meta name="loc:downloadPdf" content="Download PDF">
32+
</head>
33+
34+
<script type="module" src="./../public/docfx.min.js"></script>
35+
36+
<script>
37+
const theme = localStorage.getItem('theme') || 'auto'
38+
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
39+
</script>
40+
41+
42+
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="ManagedReference">
43+
<header class="bg-body border-bottom">
44+
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
45+
<div class="container-xxl flex-nowrap">
46+
<a class="navbar-brand" href="../index.html">
47+
<img id="logo" class="svg" src="../logo.svg" alt="MicroPlumberd">
48+
MicroPlumberd
49+
</a>
50+
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
51+
<i class="bi bi-three-dots"></i>
52+
</button>
53+
<div class="collapse navbar-collapse" id="navpanel">
54+
<div id="navbar">
55+
<form class="search" role="search" id="search">
56+
<i class="bi bi-search"></i>
57+
<input class="form-control" id="search-query" type="search" disabled="" placeholder="Search" autocomplete="off" aria-label="Search">
58+
</form>
59+
</div>
60+
</div>
61+
</div>
62+
</nav>
63+
</header>
64+
65+
<main class="container-xxl">
66+
<div class="toc-offcanvas">
67+
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
68+
<div class="offcanvas-header">
69+
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
70+
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
71+
</div>
72+
<div class="offcanvas-body">
73+
<nav class="toc" id="toc"></nav>
74+
</div>
75+
</div>
76+
</div>
77+
78+
<div class="content">
79+
<div class="actionbar">
80+
<button class="btn btn-lg border-0 d-md-none" style="margin-top: -.65em; margin-left: -.8em" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
81+
<i class="bi bi-list"></i>
82+
</button>
83+
84+
<nav id="breadcrumb"></nav>
85+
</div>
86+
87+
<article data-uid="MicroPlumberd.IId`1">
88+
89+
90+
91+
<h1 id="MicroPlumberd_IId_1" data-uid="MicroPlumberd.IId`1" class="text-break">
92+
Interface IId&lt;T&gt; <a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L131"><i class="bi bi-code-slash"></i></a>
93+
</h1>
94+
95+
<div class="facts text-secondary">
96+
<dl><dt>Namespace</dt><dd><a class="xref" href="MicroPlumberd.html">MicroPlumberd</a></dd></dl>
97+
<dl><dt>Assembly</dt><dd>MicroPlumberd.dll</dd></dl>
98+
</div>
99+
100+
<div class="markdown summary"></div>
101+
<div class="markdown conceptual"></div>
102+
103+
<div class="codewrapper">
104+
<pre><code class="lang-csharp hljs">public interface IId&lt;out T&gt; : IId where T : IParsable&lt;out T&gt;</code></pre>
105+
</div>
106+
107+
108+
109+
<h4 class="section">Type Parameters</h4>
110+
<dl class="parameters">
111+
<dt><code>T</code></dt>
112+
<dd></dd>
113+
</dl>
114+
115+
116+
117+
118+
<dl class="typelist inheritedMembers">
119+
<dt>Inherited Members</dt>
120+
<dd>
121+
<div>
122+
<a class="xref" href="MicroPlumberd.IId.html#MicroPlumberd_IId_Uuid">IId.Uuid</a>
123+
</div>
124+
</dd></dl>
125+
126+
127+
128+
129+
130+
131+
<h2 class="section" id="properties">Properties
132+
</h2>
133+
134+
135+
<a id="MicroPlumberd_IId_1_Id_" data-uid="MicroPlumberd.IId`1.Id*"></a>
136+
137+
<h3 id="MicroPlumberd_IId_1_Id" data-uid="MicroPlumberd.IId`1.Id">
138+
Id
139+
<a class="header-action link-secondary" title="View source" href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L134"><i class="bi bi-code-slash"></i></a>
140+
</h3>
141+
142+
<div class="markdown level1 summary"></div>
143+
<div class="markdown level1 conceptual"></div>
144+
145+
<div class="codewrapper">
146+
<pre><code class="lang-csharp hljs">T Id { get; }</code></pre>
147+
</div>
148+
149+
150+
151+
152+
153+
<h4 class="section">Property Value</h4>
154+
<dl class="parameters">
155+
<dt><span class="xref">T</span></dt>
156+
<dd></dd>
157+
</dl>
158+
159+
160+
161+
162+
163+
164+
165+
166+
167+
</article>
168+
169+
<div class="contribution d-print-none">
170+
<a href="https://github.com/modelingevolution/micro-plumberd/blob/master/src/MicroPlumberd/Abstractions/IAggregate.cs/#L131" class="edit-link">Edit this page</a>
171+
</div>
172+
173+
174+
</div>
175+
176+
<div class="affix">
177+
<nav id="affix"></nav>
178+
</div>
179+
</main>
180+
181+
<div class="container-xxl search-results" id="search-results"></div>
182+
183+
<footer class="border-top text-secondary">
184+
<div class="container-xxl">
185+
<div class="flex-fill">
186+
<span>Made with <a href="https://dotnet.github.io/docfx">docfx</a></span>
187+
</div>
188+
</div>
189+
</footer>
190+
</body>
191+
</html>

0 commit comments

Comments
 (0)